mirror of
https://github.com/Sonarr/Sonarr
synced 2025-12-30 04:05:29 +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;
|
|
}
|
|
}
|