2023-12-04 11:32:19 +03:00
|
|
|
import { darkCssVariables, lightCssVariables } from '@toeverything/theme';
|
|
|
|
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('html', {
|
|
|
|
vars: lightCssVariables,
|
|
|
|
});
|
|
|
|
|
|
|
|
globalStyle('html[data-theme="dark"]', {
|
|
|
|
vars: darkCssVariables,
|
|
|
|
});
|
|
|
|
|
|
|
|
globalStyle('.docs-story', {
|
|
|
|
backgroundColor: 'var(--affine-background-primary-color)',
|
|
|
|
});
|
2024-05-20 04:26:37 +03:00
|
|
|
|
|
|
|
globalStyle('body.sb-main-fullscreen', {
|
|
|
|
overflowY: 'auto',
|
|
|
|
});
|