diff --git a/src/lib/components/ratio/ColorIssues.svelte b/src/lib/components/ratio/ColorIssues.svelte index f83f1e3..168b85e 100644 --- a/src/lib/components/ratio/ColorIssues.svelte +++ b/src/lib/components/ratio/ColorIssues.svelte @@ -3,19 +3,13 @@ import ExternalLink from '$lib/components/util/ExternalLink.svelte'; - interface Props { - pass: boolean; - } - - let { pass }: Props = $props(); - let startOpen = $state(false); onMount(() => { startOpen = window.matchMedia('(min-width: 80em)').matches; }); -
+
Known Color Issues
Gamut Mapping Implementation
diff --git a/src/lib/components/ratio/index.svelte b/src/lib/components/ratio/index.svelte index 7275d7e..75c98f5 100644 --- a/src/lib/components/ratio/index.svelte +++ b/src/lib/components/ratio/index.svelte @@ -1,7 +1,6 @@