mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-16 21:35:04 -04:00
27 lines
418 B
CSS
27 lines
418 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: $breakpointLarge) {
|
|
.contentFooter {
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|