Fix: Tweaked the Media Bar top position in relation to the app bar height
This commit is contained in:
parent
24afe0f45c
commit
7372edd10f
1 changed files with 8 additions and 2 deletions
|
|
@ -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 */
|
||||||
Loading…
Reference in a new issue