mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 00:07:49 +08:00
22 lines
293 B
SCSS
22 lines
293 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html {
|
|
background-color: #FFFFFF;
|
|
}
|
|
body {
|
|
font-family: $text;
|
|
font-size: $fs-m;
|
|
line-height: 1.4em;
|
|
color: #444;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
table {
|
|
min-width: 100px;
|
|
td {
|
|
min-width: 10px;
|
|
padding: 4px 6px;
|
|
border: 1px solid #DDD;
|
|
}
|
|
} |