mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
69071768de
Fixes #4993 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
38 lines
519 B
CSS
38 lines
519 B
CSS
.inputContainer {
|
|
margin-right: 20px;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.label {
|
|
margin-bottom: 3px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.importButtonContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.importButton {
|
|
composes: button from '~Components/Link/SpinnerButton.css';
|
|
|
|
height: 35px;
|
|
}
|
|
|
|
.loadingButton {
|
|
composes: importButton;
|
|
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.loading {
|
|
composes: loading from '~Components/Loading/LoadingIndicator.css';
|
|
|
|
margin: 0 10px 0 12px;
|
|
text-align: left;
|
|
}
|
|
|
|
.importError {
|
|
margin-left: 10px;
|
|
}
|