mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 18:06:35 +00:00
27 lines
431 B
TypeScript
27 lines
431 B
TypeScript
|
|
import { Layout as LayoutComponent } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Layout = styled.div`
|
||
|
|
&&& {
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Content = styled(LayoutComponent.Content)`
|
||
|
|
&&& {
|
||
|
|
margin: 0 1rem;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Footer = styled(LayoutComponent.Footer)`
|
||
|
|
&&& {
|
||
|
|
text-align: center;
|
||
|
|
font-size: 0.7rem;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Main = styled.main`
|
||
|
|
min-height: 80vh;
|
||
|
|
`;
|