mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 23:56:36 +08:00
c7f25e8fe3
Co-authored-by: Alex Yang <himself65@outlook.com>
18 lines
304 B
TypeScript
18 lines
304 B
TypeScript
import { style } from '@vanilla-extract/css';
|
|
|
|
export const pluginContainer = style({
|
|
height: '100%',
|
|
width: '100%',
|
|
});
|
|
|
|
export const editor = style({
|
|
height: 'calc(100% - 52px)',
|
|
selectors: {
|
|
'&.full-screen': {
|
|
vars: {
|
|
'--affine-editor-width': '90%',
|
|
},
|
|
},
|
|
},
|
|
});
|