Radarr/frontend/src/Components/Page/PageContentFooter.css

27 lines
418 B
CSS
Raw Normal View History

2018-11-23 07:04:42 +00:00
.contentFooter {
display: flex;
flex: 0 0 auto;
padding: 20px;
background-color: var(--pageFooterBackground);
2018-11-23 07:04:42 +00:00
}
@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;
}
}