mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 12:11:38 +03:00
23 lines
523 B
TypeScript
23 lines
523 B
TypeScript
import { globalStyle } from '@vanilla-extract/css';
|
|
|
|
globalStyle('*', {
|
|
margin: 0,
|
|
padding: 0,
|
|
});
|
|
|
|
globalStyle('body', {
|
|
color: 'var(--affine-text-primary-color)',
|
|
fontFamily: 'var(--affine-font-family)',
|
|
fontSize: 'var(--affine-font-base)',
|
|
lineHeight: 'var(--affine-font-height)',
|
|
backgroundColor: 'var(--affine-background-primary-color)',
|
|
});
|
|
|
|
globalStyle('.docs-story', {
|
|
backgroundColor: 'var(--affine-background-primary-color)',
|
|
});
|
|
|
|
globalStyle('body.sb-main-fullscreen', {
|
|
overflowY: 'auto',
|
|
});
|