mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-31 21:59:10 +08:00
17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
import { globalStyle, style } from '@vanilla-extract/css';
|
|
|
|
globalStyle('html', {
|
|
backgroundColor: 'transparent',
|
|
});
|
|
|
|
globalStyle('body', {
|
|
backgroundColor: 'transparent',
|
|
});
|
|
|
|
export const root = style({
|
|
backgroundColor: 'transparent',
|
|
width: '100%',
|
|
height: '100%',
|
|
userSelect: 'none',
|
|
});
|