diff --git a/src/App/styles.less b/src/App/styles.less index 066281dec..6aae9b8af 100644 --- a/src/App/styles.less +++ b/src/App/styles.less @@ -65,41 +65,44 @@ box-shadow: none; } -html, body, :global(#app) { - position: relative; - z-index: 0; - width: 100vw; - height: 100vh; - min-width: var(--window-min-width); - min-height: var(--window-min-height); - font-family: 'Roboto', 'sans-serif'; - line-height: 1; +html { background-color: var(--color-background); - .router { - width: 100%; - height: 100%; - } + &, body, :global(#app) { + position: relative; + z-index: 0; + width: 100vw; + height: 100vh; + min-width: var(--window-min-width); + min-height: var(--window-min-height); + font-family: 'Roboto', 'sans-serif'; + line-height: 1; - input { - &::-moz-focus-inner { - border: none; + .router { + width: 100%; + height: 100%; } - &[type="email"], &[type="password"], &[type="text"] { - user-select: text; + input { + &::-moz-focus-inner { + border: none; + } + + &[type="email"], &[type="password"], &[type="text"] { + user-select: text; + } } - } - ::-webkit-scrollbar { - width: var(--scroll-bar-width); - } + ::-webkit-scrollbar { + width: var(--scroll-bar-width); + } - ::-webkit-scrollbar-thumb { - background-color: var(--color-secondarylighter80); - } + ::-webkit-scrollbar-thumb { + background-color: var(--color-secondarylighter80); + } - ::-webkit-scrollbar-track { - background-color: var(--color-backgroundlight); + ::-webkit-scrollbar-track { + background-color: var(--color-backgroundlight); + } } } \ No newline at end of file