mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
faaef80a80
(cherry picked from commit 85e285598106346099ceae676599c5cb4b789c92)
22 lines
258 B
CSS
22 lines
258 B
CSS
.item {
|
|
display: flex;
|
|
}
|
|
|
|
.title {
|
|
margin-right: 20px;
|
|
width: 250px;
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media (max-width: $breakpointSmall) {
|
|
.item {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.title {
|
|
text-align: left;
|
|
}
|
|
}
|