Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
import styled from '@emotion/styled';
|
||||
|
||||
const StyledLayout = styled.div`
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
height: calc(100vh - 32px);
|
||||
width: calc(100vw - 32px);
|
||||
`;
|
||||
|
||||
type FullHeightStorybookLayoutProps = {
|
||||
children: JSX.Element;
|
||||
};
|
||||
|
||||
export const FullHeightStorybookLayout = ({
|
||||
children,
|
||||
}: FullHeightStorybookLayoutProps) => <StyledLayout>{children}</StyledLayout>;
|
||||
Reference in New Issue
Block a user