mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-07 20:31:33 +08:00
cc5a6e6d40
packages/frontend/web -> packages/frontend/apps/web packages/frontend/mobile -> packages/frontend/apps/mobile packages/frontend/electron -> packages/frontend/apps/electron
19 lines
352 B
TypeScript
19 lines
352 B
TypeScript
import { style } from '@vanilla-extract/css';
|
|
|
|
export const root = style({
|
|
padding: '40px',
|
|
justifyContent: 'flex-end',
|
|
minHeight: '100dvh',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
position: 'relative',
|
|
zIndex: 0,
|
|
});
|
|
|
|
export const content = style({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'stretch',
|
|
gap: 24,
|
|
});
|