X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/1ee3e779e4b9b0a92f701a72f21a72c83cb1ce68..refs/pull/5689/head:/resources/sass/_html.scss diff --git a/resources/sass/_html.scss b/resources/sass/_html.scss index de48c8ed1..edaff0810 100644 --- a/resources/sass/_html.scss +++ b/resources/sass/_html.scss @@ -1,6 +1,10 @@ +@use "mixins"; +@use "vars"; + * { box-sizing: border-box; - outline-color: #444444; + outline-color: var(--color-primary); + outline-width: 1px; } *:focus { @@ -14,12 +18,17 @@ html { &.flexbox { overflow-y: hidden; } + &.dark-mode { + background-color: #111; + } } body { - font-size: $fs-m; + font-size: vars.$fs-m; line-height: 1.6; - color: #444; + @include mixins.lightDark(color, #444, #AAA); -webkit-font-smoothing: antialiased; - background-color: #F2F2F2; -} \ No newline at end of file + height: 100%; + display: flex; + flex-direction: column; +}