mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
856a55a9c9
Fixes #4710 Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
36 lines
531 B
CSS
36 lines
531 B
CSS
.groups {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.namingSelectContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.namingSelect {
|
|
composes: select from '~Components/Form/SelectInput.css';
|
|
|
|
margin-left: 10px;
|
|
width: 200px;
|
|
}
|
|
|
|
.footNote {
|
|
display: flex;
|
|
color: $helpTextColor;
|
|
|
|
.icon {
|
|
margin-top: 3px;
|
|
margin-right: 5px;
|
|
padding: 2px;
|
|
}
|
|
|
|
code {
|
|
padding: 0 1px;
|
|
border: 1px solid $borderColor;
|
|
background-color: #f7f7f7;
|
|
}
|
|
}
|