mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 21:11:06 +08:00

* feat: v5 is in progress * feat: antdv5 is updated * fix: build is fixed * fix: default config is over written by custom one * chore: onchange handler is updated * chore: overflow is hidden in the layout * Update index.tsx * fix: import is fixed * chore: un used import is fixed * fix: dark mode is updated in service map * fix: config dropdown is updated * fix: logs types is updated * fix: copy clipboard notification is updated * chore: layout changes are updated * chore: colors is updated * chore: action width is updated Co-authored-by: Pranay Prateek <pranay@signoz.io> Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
19 lines
366 B
TypeScript
19 lines
366 B
TypeScript
import { Layout as LayoutComponent } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Layout = styled(LayoutComponent)`
|
|
&&& {
|
|
display: flex;
|
|
position: relative;
|
|
min-height: calc(100vh - 4rem);
|
|
overflow: hidden;
|
|
}
|
|
`;
|
|
|
|
export const ChildrenContainer = styled.div`
|
|
margin: 0 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
`;
|