Files
Prowlarr/frontend/src/Search/SearchFooter.css
T
2021-11-20 18:00:55 -06:00

57 lines
810 B
CSS

.inputContainer {
margin-right: 20px;
min-width: 150px;
}
.indexerContainer {
margin-right: 20px;
min-width: 250px;
}
.buttonContainer {
display: flex;
justify-content: flex-end;
flex-grow: 1;
}
.buttonContainerContent {
flex-grow: 0;
}
.buttons {
display: flex;
justify-content: flex-end;
flex-grow: 1;
}
.searchButton {
composes: button from '~Components/Link/SpinnerButton.css';
margin-left: 25px;
height: 35px;
}
.selectedReleasesLabel {
margin-bottom: 3px;
text-align: right;
font-weight: bold;
}
@media only screen and (max-width: $breakpointSmall) {
.inputContainer {
margin-right: 0;
}
.buttonContainer {
justify-content: flex-start;
}
.buttonContainerContent {
flex-grow: 1;
}
.buttons {
justify-content: space-between;
}
}