mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
21 lines
360 B
CSS
21 lines
360 B
CSS
.restrictions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.addRestriction {
|
|
composes: restriction from './Restriction.css';
|
|
|
|
background-color: $cardAlternateBackgroundColor;
|
|
color: $gray;
|
|
text-align: center;
|
|
}
|
|
|
|
.center {
|
|
display: inline-block;
|
|
padding: 5px 20px 0;
|
|
border: 1px solid $borderColor;
|
|
border-radius: 4px;
|
|
background-color: $white;
|
|
}
|