BookStack/resources/assets/sass/_html.scss
Dan Brown d94fc5b694
Fixed table cell p tag spacing and de-duped editor shortcuts
Also changed shortcuts to be better compatible with OSX by using the
command key.
2016-09-06 19:50:47 +01:00

34 lines
450 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, th {
min-width: 10px;
padding: 4px 6px;
border: 1px solid #DDD;
}
td p, th p {
margin: 0;
}
}