mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
1ba5a1274c
- Most elements done, but still need to do editors, tables and final pass. - Toggled only by quick js check at the moment, checking via css media query. Need to make into user-preference toggle. For #1234
28 lines
427 B
SCSS
28 lines
427 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
outline-color: var(--color-primary);
|
|
outline-width: 1px;
|
|
}
|
|
|
|
*:focus {
|
|
outline-style: dotted;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
background-color: #F2F2F2;
|
|
&.flexbox {
|
|
overflow-y: hidden;
|
|
}
|
|
&.dark-mode {
|
|
background-color: #111;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-size: $fs-m;
|
|
line-height: 1.6;
|
|
@include lightDark(color, #444, #AAA);
|
|
-webkit-font-smoothing: antialiased;
|
|
} |