Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1html {
2 display: flex;
3}
4
5html,
6body {
7 background-color: var(--background-secondary) !important;
8 height: auto !important;
9 min-height: 100%;
10}
11
12body {
13 margin: 0;
14 font-family:
15 -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
16 'Helvetica Neue', sans-serif;
17 -webkit-font-smoothing: antialiased;
18 -moz-osx-font-smoothing: grayscale;
19}
20
21code {
22 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
23}
24
25#root {
26 height: 100%;
27}