Sonarr/frontend/src/index.css

16 lines
228 B
CSS
Raw Normal View History

2018-01-13 02:01:27 +00:00
html,
body {
height: 100%; /* needed for proper layout */
}
body {
overflow: hidden;
background-color: var(--pageBackground);
2018-01-13 02:01:27 +00:00
}
2019-03-04 05:14:21 +00:00
@media only screen and (max-width: $breakpointSmall) {
2018-01-13 02:01:27 +00:00
body {
overflow-y: auto;
}
}