Skip to content

Commit

Permalink
Update collapse icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
ernstmul committed Jan 28, 2025
1 parent c54210d commit 31c4f62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion v2/pink-sb/src/lib/sidebar/Base.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<div class="lines-container">
<div class="icon icon-idle minus-icon"><Icon icon={IconMinus} /></div>
<div class="icon icon-hover">
<Icon icon={state === 'icons' ? IconChevronRight : IconChevronLeft} />
<Icon
icon={state === 'icons' ? IconChevronRight : IconChevronLeft}
color="--color-fgcolor-neutral-tertiary"
/>
</div>
</div>
<div class="badge">
Expand Down Expand Up @@ -123,6 +126,7 @@
.icon {
display: flex;
align-items: center;
color: var(--color-fgcolor-neutral-tertiary);
}
.icon-idle {
display: block;
Expand Down

0 comments on commit 31c4f62

Please sign in to comment.