1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-10 23:29:53 +02:00
Sonarr/frontend/src/index.css
Qstick 2291f3e00e New: Native Theme Engine
Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com>
2022-08-07 15:24:38 -07:00

16 lines
228 B
CSS

html,
body {
height: 100%; /* needed for proper layout */
}
body {
overflow: hidden;
background-color: var(--pageBackground);
}
@media only screen and (max-width: $breakpointSmall) {
body {
overflow-y: auto;
}
}