12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
export const RightDrawerBody = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(
|
|
100vh - ${({ theme }) => theme.spacing(14)} - 1px
|
|
); // (-1 for border)
|
|
overflow: auto;
|
|
position: relative;
|
|
`;
|