]> BookStack Code Mirror - bookstack/blob - resources/sass/_html.scss
Lexical: Fixed code in lists, removed extra old alignment code
[bookstack] / resources / sass / _html.scss
1 @use "mixins";
2 @use "vars";
3
4 * {
5   box-sizing: border-box;
6   outline-color: var(--color-primary);
7   outline-width: 1px;
8 }
9
10 *:focus {
11   outline-style: dotted;
12 }
13
14 html {
15   height: 100%;
16   overflow-y: scroll;
17   background-color: #F2F2F2;
18   &.flexbox {
19     overflow-y: hidden;
20   }
21   &.dark-mode {
22     background-color: #111;
23   }
24 }
25
26 body {
27   font-size: vars.$fs-m;
28   line-height: 1.6;
29   @include mixins.lightDark(color, #444, #AAA);
30   -webkit-font-smoothing: antialiased;
31   height: 100%;
32   display: flex;
33   flex-direction: column;
34 }