mirror of
https://github.com/Radarr/Radarr
synced 2025-12-25 01:34:32 +01:00
15 lines
228 B
CSS
15 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;
|
|
}
|
|
}
|