From f0aa89097e594e3ac77db63f7390948daf5a833c Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Fri, 27 Feb 2026 18:39:09 +0300 Subject: [PATCH] feat(TypographyMenu): rewrite from hidden class to if based rendering --- .../SetupFont/ui/TypographyMenu.svelte | 82 ++++++++++--------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/src/features/SetupFont/ui/TypographyMenu.svelte b/src/features/SetupFont/ui/TypographyMenu.svelte index db82f82..3150ada 100644 --- a/src/features/SetupFont/ui/TypographyMenu.svelte +++ b/src/features/SetupFont/ui/TypographyMenu.svelte @@ -10,6 +10,7 @@ import { cn } from '$shared/shadcn/utils/shadcn-utils'; import { ComboControl } from '$shared/ui'; import Settings2Icon from '@lucide/svelte/icons/settings-2'; import { getContext } from 'svelte'; +import { cubicOut } from 'svelte/easing'; import { fly } from 'svelte/transition'; import { MULTIPLIER_L, @@ -47,47 +48,48 @@ $effect(() => { } }); - -