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 bf849be commit ef7dbaaCopy full SHA for ef7dbaa
src/lib/holocene/accordion.svelte
@@ -47,7 +47,7 @@
47
id="{id}-trigger"
48
aria-expanded={open}
49
aria-controls="{id}-content"
50
- class="accordion-open flex w-full flex-col"
+ class="flex w-full flex-col"
51
disabled={disabled || readOnly}
52
type="button"
53
on:click={toggleAccordion}
@@ -64,7 +64,9 @@
64
{#if !readOnly}
65
<Icon
66
name={open ? 'chevron-up' : 'chevron-down'}
67
- class={disabled ? 'text-gray-500' : 'text-primary'}
+ class="rounded-full from-blue-100 to-purple-100 hover:bg-gradient-to-br {disabled
68
+ ? 'text-gray-500'
69
+ : 'text-primary'}"
70
/>
71
{/if}
72
</div>
0 commit comments