diff --git a/web/src/components/designer-controls/FontFamilyPicker.svelte b/web/src/components/designer-controls/FontFamilyPicker.svelte index 92b7c77..56e01b5 100644 --- a/web/src/components/designer-controls/FontFamilyPicker.svelte +++ b/web/src/components/designer-controls/FontFamilyPicker.svelte @@ -84,13 +84,14 @@ {/each} {/if} - - {/if} - {#if fontQuerySupported} - + {#if fontQuerySupported && $fontCache.length <= 1} + + + {/if} + {/if} @@ -110,12 +111,4 @@ overflow-y: auto; } - .pulse { - animation: pulse 1.5s ease-in-out 3; - } - - @keyframes pulse { - 0%, 100% { opacity: 1; } - 50% { opacity: 0.5; } - }