mirror of https://github.com/Sonarr/Sonarr
Fixed: Mass Editor not showing delete button on narrow screens
Fixes #3142
This commit is contained in:
parent
3a7992b1c8
commit
4713eaffdb
|
@ -34,6 +34,19 @@
|
||||||
height: 35px;
|
height: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: $breakpointExtraLarge) {
|
||||||
|
.deleteSelectedButton {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: $breakpointLarge) {
|
||||||
|
.buttonContainer {
|
||||||
|
justify-content: flex-start;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: $breakpointSmall) {
|
@media only screen and (max-width: $breakpointSmall) {
|
||||||
.inputContainer {
|
.inputContainer {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
|
|
Loading…
Reference in New Issue