mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-18 12:11:31 +08:00
18 lines
332 B
TypeScript
18 lines
332 B
TypeScript
import { Layout as LayoutComponent } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Layout = styled(LayoutComponent)`
|
|
&&& {
|
|
min-height: 92vh;
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
`;
|
|
|
|
export const ChildrenContainer = styled.div`
|
|
margin: 0 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
`;
|