Skip to content

Commit

Permalink
fix glitching animation when closing settings panel after height changed
Browse files Browse the repository at this point in the history
  • Loading branch information
SenkJu committed Oct 10, 2024
1 parent efb23f5 commit bb33a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/settings/SettingsContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
</script>

<div class="container" transition:fly={{ y: -10, duration: 200 }}>
<div class="container" in:fly={{ y: -10, duration: 200 }} out:fly={{ y: -10, duration: 200 }}>
<div class="header">
<div class="title">{title}</div>
<button class="button-hide" on:click={handleHideClick}>
Expand Down

0 comments on commit bb33a9c

Please sign in to comment.