Files
Readarr/frontend/src/Components/Page/PageContentFooter.css
T
Stevie Robinson 5587af7806 Fixed: Mass Editor Footer on Smaller Screens
(cherry picked from commit 9afcec8b1ffc11da93ae50b73f77f5ebe6e12391)
2023-05-06 17:06:34 -05:00

27 lines
423 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;
div {
margin-top: 10px;
&:first-child {
margin-top: 0;
}
}
}
}
@media only screen and (max-width: $breakpointExtraLarge) {
.contentFooter {
flex-wrap: wrap;
}
}