1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-23 11:04:52 +02:00

Fixed: Mass Editor not showing delete button on narrow screens

Fixes 
This commit is contained in:
Mark McDowall 2019-06-11 23:06:14 -07:00
parent 3a7992b1c8
commit 4713eaffdb

@ -34,6 +34,19 @@
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) {
.inputContainer {
margin-right: 0;