mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 23:26:30 +08:00
17 lines
232 B
CSS
17 lines
232 B
CSS
:root {
|
|
--title-bar-height: 30px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
margin-top: var(--title-bar-height);
|
|
height: calc(100vh - var(--title-bar-height));
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#react-root {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|