Fixes buttons in episode overview in RTL layouts

This commit is contained in:
Hadi Charara 2022-07-04 14:24:08 -04:00
parent b15953acc2
commit fc96d4dad1
2 changed files with 12 additions and 9 deletions

View File

@ -672,15 +672,6 @@
margin-bottom: 0; margin-bottom: 0;
padding-left: 0; padding-left: 0;
} }
[dir="rtl"] & {
@include header-poster-padding-rtl;
@media all and (max-width: 32em) {
padding-left: unset;
padding-right: 0;
}
}
} }
.subtitle { .subtitle {

View File

@ -1,3 +1,5 @@
@import '../assets/css/librarybrowser.scss';
.chevron_right, .chevron_right,
.chevron_left, .chevron_left,
.arrow_back, .arrow_back,
@ -27,3 +29,13 @@
right: 20em !important; right: 20em !important;
} }
} }
.layout-mobile .mainDetailButtons {
padding-left: unset !important;
@include header-poster-padding-rtl;
@media all and (max-width: 32em) {
padding-left: unset !important;
padding-right: 0 Im !important;
}
}