Skip to content

Commit

Permalink
Remove padding and increase width of player controls
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkyProgrammer committed Nov 4, 2024
1 parent 9f58f03 commit c62e153
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,21 @@
}
}

@media only screen and (width >= 1000px) {
:deep(.shaka-bottom-controls) {
/* remove some bottom padding since the seek bar is above */
padding-bottom: 0;

/* make seekbar take full width on non-mobile devices */
width: 100%;
}

/* increase height of captions area since we remove the padding-bottom below the seekbar */
:deep(.shaka-controls-container[shown='true']~.shaka-text-container) {
bottom: 12.5%;
}
}

@media only screen and (width <=1350px) {
:deep(.theatre-button) {
display: none;
Expand Down

0 comments on commit c62e153

Please sign in to comment.