mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
28 lines
565 B
TypeScript
28 lines
565 B
TypeScript
import { cssVarV2 } from '@toeverything/theme/v2';
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
export const group = style({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
gap: 4,
|
|
width: '100%',
|
|
});
|
|
|
|
export const title = style({
|
|
padding: '0px 8px',
|
|
color: cssVarV2('text/tertiary'),
|
|
fontSize: 13,
|
|
lineHeight: '18px',
|
|
letterSpacing: -0.08,
|
|
fontWeight: 400,
|
|
});
|
|
|
|
export const content = style({
|
|
background: cssVarV2('layer/background/primary'),
|
|
borderRadius: 12,
|
|
padding: '10px 16px',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
gap: 8,
|
|
});
|