Files
AFFiNE-Mirror/packages/frontend/apps/mobile/src/views/sign-in/layout.css.ts
T
EYHN cc5a6e6d40 refactor: new project struct (#8199)
packages/frontend/web -> packages/frontend/apps/web
packages/frontend/mobile -> packages/frontend/apps/mobile
packages/frontend/electron -> packages/frontend/apps/electron
2024-09-12 07:42:57 +00:00

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,
});