Files
AFFiNE-Mirror/client-app/src/main.css
T
2023-01-04 21:11:26 +08:00

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%;
}