mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-12 15:30:39 -04:00
16 lines
228 B
CSS
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;
|
|
}
|
|
}
|