Lidarr/frontend/src/AddArtist/AddNewArtist/AddNewArtistModalContent.css

75 lines
1.1 KiB
CSS
Raw Normal View History

2017-09-04 02:20:56 +00:00
.container {
display: flex;
}
.year {
margin-left: 5px;
color: $disabledColor;
}
.poster {
flex: 0 0 170px;
2017-10-07 06:21:06 +00:00
margin-right: 20px;
2017-09-04 02:20:56 +00:00
height: 250px;
}
.info {
flex-grow: 1;
}
.overview {
margin-bottom: 30px;
}
.labelIcon {
margin-left: 8px;
}
.searchForMissingAlbumsLabelContainer {
2017-09-04 02:20:56 +00:00
display: flex;
margin-top: 2px;
}
.searchForMissingAlbumsLabel {
2017-09-04 02:20:56 +00:00
margin-right: 8px;
font-weight: normal;
}
.searchForMissingAlbumsContainer {
2017-09-04 02:20:56 +00:00
composes: container from 'Components/Form/CheckInput.css';
flex: 0 1 0;
}
.searchForMissingAlbumsInput {
2017-09-04 02:20:56 +00:00
composes: input from 'Components/Form/CheckInput.css';
margin-top: 0;
}
.modalFooter {
composes: modalFooter from 'Components/Modal/ModalFooter.css';
}
.addButton {
2017-10-02 03:05:28 +00:00
@add-mixin truncate;
2017-09-04 02:20:56 +00:00
composes: button from 'Components/Link/SpinnerButton.css';
}
.hideLanguageProfile {
composes: group from 'Components/Form/FormGroup.css';
display: none;
}
@media only screen and (max-width: $breakpointSmall) {
.modalFooter {
display: block;
text-align: center;
}
.addButton {
margin-top: 10px;
}
}