mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
5587af7806
(cherry picked from commit 9afcec8b1ffc11da93ae50b73f77f5ebe6e12391)
27 lines
423 B
CSS
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;
|
|
}
|
|
}
|