mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
64c1ef85c4
Closes #613
29 lines
354 B
CSS
29 lines
354 B
CSS
.header {
|
|
display: flex;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.quality,
|
|
.title {
|
|
flex: 0 1 250px;
|
|
}
|
|
|
|
.notice {
|
|
composes: alert from '~Components/Alert.css';
|
|
|
|
margin: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.header {
|
|
display: none;
|
|
}
|
|
|
|
.definitions {
|
|
&:first-child {
|
|
border-top: none;
|
|
}
|
|
}
|
|
}
|