Fix: Tweaked the Media Bar top position in relation to the app bar height

This commit is contained in:
lscambo13
2025-08-14 11:50:07 -07:00
parent 24afe0f45c
commit 7372edd10f

View File

@@ -52,8 +52,8 @@
#slides-container { #slides-container {
width: calc(100vw - (2 * var(--sidePadding))); width: calc(100vw - (2 * var(--sidePadding)));
height: 60%; height: 62%;
top: 8em; top: calc(1.5 * var(--appBarHeight));
border: var(--defaultBorder); border: var(--defaultBorder);
border-radius: var(--largerRadius); border-radius: var(--largerRadius);
transition: all .125s, border 0s; transition: all .125s, border 0s;
@@ -106,4 +106,10 @@
} }
} }
@media (min-width: 75em) {
#slides-container {
top: calc(.5 * var(--appBarHeight));
}
}
/* this styles the media bar plugin - end */ /* this styles the media bar plugin - end */