]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_html.scss
Major permission naming refactor and database migration cleanup
[bookstack] / resources / assets / sass / _html.scss
1 * {
2   box-sizing: border-box;
3 }
4 html {
5   background-color: #FFFFFF;
6   height: 100%;
7   overflow-y: scroll;
8   &.flexbox {
9     overflow-y: hidden;
10   }
11 }
12 body {
13   font-family: $text;
14   font-size: $fs-m;
15   line-height: 1.6;
16   color: #616161;
17   -webkit-font-smoothing: antialiased;
18 }
19
20 button {
21   font-size: 100%;
22 }
23
24 table {
25   min-width: 100px;
26   td {
27         min-width: 10px;
28         padding: 4px 6px;
29         border: 1px solid #DDD;
30   }
31 }