Skip to content

Commit

Permalink
smooth
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Apr 15, 2024
1 parent e0416f1 commit fcc56cb
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions quartz/components/styles/explorer-burger.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,26 @@
&:not(.collapsed) {
width: 90vw;
background-color: var(--light);
height: 90dvh;
height: 100vh;
position: absolute;
z-index: 100;
max-height: max-content !important;
transition: all 300ms ease;
transition: all 500ms ease;
overflow: hidden;
//blur the background
//top: 10dvh;
}

&.collapsed li {
filter: blur(150px);
transition: all 500ms ease-in-out;
}

&:not(.collapsed) li {
filter: blur(0);
transition: all 500ms ease;
}

/* ul.overflow {
max-height: 70dvh;
} */
Expand All @@ -66,11 +77,11 @@
left: 0;
width: 0;
background-color: var(--light);
height: 90dvh;
height: 100dvh;
position: absolute;
max-height: max-content !important;
z-index: 100;
transition: all 300ms ease-in-out;
transition: all 500ms ease-in-out;
}
}

Expand Down

0 comments on commit fcc56cb

Please sign in to comment.