mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a9634b6b66
- Applied since the browser defaults caused outlines to appear very large in some cases. - Set default color to use app primary color, to help them blend into the design a little. For #1738
26 lines
382 B
SCSS
26 lines
382 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
outline-color: var(--color-primary);
|
|
outline-width: 1px;
|
|
}
|
|
|
|
*:focus {
|
|
outline-style: dotted;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
background-color: #F2F2F2;
|
|
&.flexbox {
|
|
overflow-y: hidden;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-size: $fs-m;
|
|
line-height: 1.6;
|
|
color: #444;
|
|
-webkit-font-smoothing: antialiased;
|
|
background-color: #F2F2F2;
|
|
} |