mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-22 20:46:38 +08:00
19 lines
388 B
TypeScript
19 lines
388 B
TypeScript
import { styled } from '@affine/component';
|
|
|
|
export const StyledPage = styled('div')(({ theme }) => {
|
|
return {
|
|
height: '100vh',
|
|
backgroundColor: theme.colors.pageBackground,
|
|
transition: 'background-color .5s',
|
|
display: 'flex',
|
|
flexGrow: '1',
|
|
};
|
|
});
|
|
|
|
export const StyledWrapper = styled('div')(() => {
|
|
return {
|
|
flexGrow: 1,
|
|
position: 'relative',
|
|
};
|
|
});
|