mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
850bfdcf82
Co-Authored-By: Zak Saunders <1936903+thezak48@users.noreply.github.com>
36 lines
543 B
CSS
36 lines
543 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: var(--helpTextColor);
|
|
|
|
.icon {
|
|
margin-top: 3px;
|
|
margin-right: 5px;
|
|
padding: 2px;
|
|
}
|
|
|
|
code {
|
|
padding: 0 1px;
|
|
border: 1px solid var(--borderColor);
|
|
background-color: #f7f7f7;
|
|
}
|
|
}
|