1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00

Update action button style for component settings to match designs

This commit is contained in:
Andrew Kingston 2022-06-08 16:51:14 +01:00
parent ccfa350118
commit feb8bff299
2 changed files with 5 additions and 1 deletions

View file

@ -83,4 +83,7 @@
:global([dir="ltr"] .spectrum-ActionButton .spectrum-Icon) {
margin-left: 0;
}
.is-selected {
background: var(--spectrum-global-color-gray-300);
}
</style>

View file

@ -10,8 +10,9 @@
{#each options as option}
<ActionButton
icon={option.barIcon}
quiet={option.value !== value}
quiet
on:click={() => onChange(option.value)}
selected={option.value === value}
/>
{/each}
</ActionGroup>