diff --git a/src/lib/components/LayoutCC1.svelte b/src/lib/components/LayoutCC1.svelte index dbd7030c..27cd4757 100644 --- a/src/lib/components/LayoutCC1.svelte +++ b/src/lib/components/LayoutCC1.svelte @@ -12,13 +12,13 @@ {/each} -
+
- +
@@ -62,7 +62,7 @@ align-items: center; justify-content: center; - margin: 16px; + margin-block-end: -36px; padding: 0; border: none; diff --git a/src/lib/components/RingInput.svelte b/src/lib/components/RingInput.svelte index 3418173f..47142bf6 100644 --- a/src/lib/components/RingInput.svelte +++ b/src/lib/components/RingInput.svelte @@ -8,7 +8,10 @@ ["j", "k", "l"], ] - export let layerNames = ["Primary Layer", "Number Layer", "Function Layer"] + /** @type {'primary' | 'secondary' | 'tertiary'} */ + export let type = "primary" + + const layerNames = ["Primary Layer", "Number Layer", "Function Layer"] const virtualLayerMap = [1, 0, 2] const characterOffset = 8 @@ -24,7 +27,7 @@ } -
+
{#each layout as keys, quadrant}