Fix clipped focused button

The button in the subtitle (Season) is clipped when focused
because its parent container has 'overflow: hidden' to allow
ellipsis.
This commit is contained in:
Dmitry Lyzo 2022-02-09 22:55:56 +03:00
parent 80099f29e4
commit 99fb0e4b72

View File

@ -627,10 +627,15 @@
.subtitle {
margin: 0.15em 0 0.2em;
// Leave room for a focused button
margin-left: -1em;
padding-left: 1em;
}
.layout-mobile .subtitle {
margin: 0.2em 0 0.2em;
padding-left: 0; // Reset padding for focused button since 'margin-left' is 0
}
.detailPagePrimaryContainer {