Ankit Nayan e8f341b850
Revert "feat: antdv5 is updated (#1880)" (#1991)
This reverts commit 7b86022280feeb891b3f2db1bad050d64a4f7a4f.
2023-01-06 13:40:31 +05:30

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%;
`;