mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 11:41:51 +03:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import { cssVar } from '@toeverything/theme';
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
export const container = style({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
height: '100vh',
|
|
width: '100%',
|
|
lineHeight: 4,
|
|
color: cssVar('--affine-text-secondary-color'),
|
|
});
|