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 7781bfd commit 77c37e6Copy full SHA for 77c37e6
src/routes/announcements/TagsHost.svelte
@@ -49,9 +49,19 @@
49
/>
50
{/each}
51
52
- {#if expandable && tags.length > 1}
53
- <li>
54
- <Button type="text" on:click={() => (showAllTags = !showAllTags)}>
+ {#if expandable && tags.length > 1}
+ <li>
+ <Button type="text" on:click={() => (showAllTags = !showAllTags)}>
55
+ <div
56
+ class="expand-arrow"
57
+ style:transform={showAllTags ? 'rotate(90deg)' : 'rotate(-90deg)'}
58
+ >
59
+ <ChevronDown size="24px" color="var(--surface-six)" />
60
+ </div>
61
+ </Button>
62
+ </li>
63
+ {/if}
64
+</div>
65
66
<style lang="scss">
67
div {
0 commit comments