mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-02 14:49:44 +08:00
944f4ee895
Co-authored-by: QiShaoXuan <qishaoxuan777@gmail.com>
19 lines
353 B
TypeScript
19 lines
353 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': '100%',
|
|
'--affine-editor-side-padding': '15px',
|
|
},
|
|
},
|
|
},
|
|
});
|