1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00
Files
Sonarr/frontend/src/Components/Page/PageContentFooter.css
T
Mark McDowall 5894b4fd95 v3 UI
2018-12-29 13:08:43 +01:00

27 lines
398 B
CSS

.contentFooter {
display: flex;
flex: 0 0 auto;
padding: 20px;
background-color: #f1f1f1;
}
@media only screen and (max-width: $breakpointSmall) {
.contentFooter {
display: block;
div {
margin-top: 10px;
&:first-child {
margin-top: 0;
}
}
}
}
@media only screen and (max-width: $breakpointLarge) {
.contentFooter {
flex-wrap: wrap;
}
}