BookStack/resources/assets/sass/_html.scss
Dan Brown a06321675a Forced browser scrollbar, Added custom theme compatible logo
Also removed link to search all pages if no pages mached search on global search page.
Closes #74.
2016-03-13 14:00:24 +00:00

31 lines
412 B
SCSS

* {
box-sizing: border-box;
}
html {
background-color: #FFFFFF;
height: 100%;
overflow-y: scroll;
&.flexbox {
overflow-y: hidden;
}
}
body {
font-family: $text;
font-size: $fs-m;
line-height: 1.6;
color: #616161;
-webkit-font-smoothing: antialiased;
}
button {
font-size: 100%;
}
table {
min-width: 100px;
td {
min-width: 10px;
padding: 4px 6px;
border: 1px solid #DDD;
}
}