Lidarr/frontend/src/InteractiveImport/Track/SelectTrackModalContent.css
Andrew Champion 95089080f4 New: Filter tracks by title or number in Manual Import
(cherry picked from commit 73ed5f6ee27a9de1844d6e7caf26f765b082fe21)
2025-09-26 09:46:52 -05:00

51 lines
757 B
CSS

.modalBody {
composes: modalBody from '~Components/Modal/ModalBody.css';
display: flex;
flex: 1 1 auto;
flex-direction: column;
}
.filterInput {
composes: input from '~Components/Form/TextInput.css';
flex: 0 0 auto;
margin-bottom: 20px;
}
.scroller {
flex: 1 1 auto;
}
.footer {
composes: modalFooter from '~Components/Modal/ModalFooter.css';
display: flex;
justify-content: space-between;
overflow: hidden;
}
.path {
margin-right: 20px;
color: var(--dimColor);
}
.buttons {
display: flex;
}
@media only screen and (max-width: $breakpointSmall) {
.footer {
display: block;
}
.path {
margin-right: 0;
margin-bottom: 10px;
}
.buttons {
justify-content: space-between;
flex-grow: 1;
}
}