We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37f4b00 commit 51b7a09Copy full SHA for 51b7a09
infrastructure/control-panel/src/lib/ui/Checkbox/Checkbox.svelte
@@ -18,7 +18,7 @@
18
19
const cBase = $derived(`
20
h-4 w-4 rounded-[3px] border-2 transition-all flex items-center justify-center
21
- ${restProps.disabled ? 'border-gray-500' : checked ? 'border-primary-600' : 'border-gray-300'}
+ ${restProps.disabled ? 'border-black-100' : checked ? 'border-primary' : 'border-black-100'}
22
dark:bg-transparent
23
`);
24
</script>
@@ -46,6 +46,6 @@
46
onclick={() => inputElement?.click()}
47
>
48
{#if checked}
49
- <span class="bg-gradient-primary block h-2 w-2 rounded-[1px]"></span>
+ <span class="bg-primary block h-2 w-2 rounded-[1px]"></span>
50
{/if}
51
</span>
0 commit comments