1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-08 04:49:04 +02:00
Radarr/frontend/src/index.css
Qstick 850bfdcf82 New: Native Theme Engine
Co-Authored-By: Zak Saunders <1936903+thezak48@users.noreply.github.com>
2022-11-20 11:49:50 -06: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;
}
}