Fixes issue where media player was cutoff for mid width devices

This commit is contained in:
2026-06-26 04:54:05 +00:00
parent 0263f978aa
commit 5188777556
5 changed files with 65 additions and 54 deletions
+3 -2
View File
@@ -3,6 +3,7 @@
// Bar heights (keep in sync so player sits flush below navbar)
$navbar-height-mobile: 64px;
$navbar-height-desktop: 52px;
$player-height: 48px;
app-navbar {
position: fixed;
@@ -21,7 +22,7 @@ app-media-player {
}
main {
padding-top: calc(#{$navbar-height-mobile} + 44px);
padding-top: calc(#{$navbar-height-mobile} + #{$player-height});
}
@media (min-width: #{$bp-md}) {
@@ -30,6 +31,6 @@ main {
}
main {
padding-top: calc(#{$navbar-height-desktop} + 44px);
padding-top: calc(#{$navbar-height-desktop} + #{$player-height});
}
}