mirror of
https://github.com/Readarr/Readarr
synced 2026-03-20 19:43:34 +01:00
26 lines
398 B
CSS
26 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;
|
|
}
|
|
}
|