diff --git a/web/src/components/settings/SettingsCategory.svelte b/web/src/components/settings/SettingsCategory.svelte index d97a40a4..2b9503df 100644 --- a/web/src/components/settings/SettingsCategory.svelte +++ b/web/src/components/settings/SettingsCategory.svelte @@ -8,19 +8,19 @@ export let disabled = false; export let beta = false; - let animate = false; + let focus = false; $: hash = $page.url.hash.replace("#", ""); $: if (hash === sectionId) { - animate = true; + focus = true; }
@@ -47,11 +47,11 @@ opacity: 0.5; } - .settings-content.animate { + .settings-content.focus { animation: highlight 2s; } - :global([data-reduce-motion="true"]) .settings-content.animate { + :global([data-reduce-motion="true"]) .settings-content.focus { animation: highlight-lite 2s !important; }