Skip to content

Commit bb4e63d

Browse files
committed
fix durations
1 parent de4e67b commit bb4e63d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/site-kit/src/lib/nav/Menu.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<ModalOverlay {onclose} />
5656

5757
<div class="menu" use:trap={{ reset_focus: false }}>
58-
<div class="mobile-main-menu" transition:popup={{ duration: 3000, easing: quintOut }}>
58+
<div class="mobile-main-menu" transition:popup={{ duration: 200, easing: quintOut }}>
5959
<div
6060
class="menu-background"
6161
class:ready
@@ -210,7 +210,7 @@
210210
border-radius: 1rem 1rem 0 0;
211211
background: var(--background, var(--sk-back-2));
212212
will-change: height;
213-
transition: 0.4s var(--quint-out);
213+
transition: 0.3s var(--quint-out);
214214
transition-property: none;
215215
216216
&.ready {
@@ -232,7 +232,7 @@
232232
.clip {
233233
width: 100%;
234234
height: 100%;
235-
transition: clip-path 0.4s cubic-bezier(0.23, 1, 0.32, 1);
235+
transition: clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
236236
will-change: clip-path;
237237
}
238238
@@ -244,7 +244,7 @@
244244
width: 200%;
245245
height: 100%;
246246
grid-template-columns: 50% 50%;
247-
transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
247+
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
248248
grid-auto-rows: 100%;
249249
250250
&.reduced-motion {

0 commit comments

Comments
 (0)