BookStack/resources/assets/sass/_html.scss

24 lines
310 B
SCSS
Raw Normal View History

2015-07-12 15:01:42 -04:00
* {
2015-08-31 06:43:28 -04:00
box-sizing: border-box;
2015-07-12 15:01:42 -04:00
}
2015-07-12 15:01:42 -04:00
html {
2015-08-31 06:43:28 -04:00
background-color: #FFFFFF;
height: 100%;
overflow-y: scroll;
&.flexbox {
overflow-y: hidden;
}
2015-07-12 15:01:42 -04:00
}
2015-07-12 15:01:42 -04:00
body {
2015-08-31 06:43:28 -04:00
font-family: $text;
font-size: $fs-m;
line-height: 1.6;
color: #616161;
-webkit-font-smoothing: antialiased;
2015-07-12 15:01:42 -04:00
}
2015-07-21 16:16:26 -04:00
button {
font-size: 100%;
2015-07-21 16:16:26 -04:00
}