1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-30 18:25:57 -04:00
Files
Radarr/frontend/src/Components/Page/PageContentFooter.css
2023-04-29 22:47:02 -05:00

19 lines
328 B
CSS

.contentFooter {
display: flex;
flex: 0 0 auto;
padding: 20px;
background-color: var(--pageFooterBackground);
}
@media only screen and (max-width: $breakpointSmall) {
.contentFooter {
display: block;
}
}
@media only screen and (max-width: $breakpointExtraLarge) {
.contentFooter {
flex-wrap: wrap;
}
}