summaryrefslogtreecommitdiff
path: root/ui/lib
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2025-01-05 17:09:28 -0500
committerKit La Touche <kit@transneptune.net>2025-01-05 17:09:28 -0500
commitf81065314aaa5c210a4245e65469906b277c363e (patch)
treeff9fadae4649828555d4ac9422731b9b51f0bd76 /ui/lib
parent0675b417cb6f55edf1f1bdb59c26752e3c6b374f (diff)
Stylize channel badges
Diffstat (limited to 'ui/lib')
-rw-r--r--ui/lib/components/Channel.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/lib/components/Channel.svelte b/ui/lib/components/Channel.svelte
index dc019a0..2fc3249 100644
--- a/ui/lib/components/Channel.svelte
+++ b/ui/lib/components/Channel.svelte
@@ -5,9 +5,9 @@
<a href="/ch/{id}">
<li class:active={active}>
{#if hasUnreads}
- <span>❦</span>
+ <span class="badge has-unreads">❦</span>
{:else}
- <span>¶</span>
+ <span class="badge has-no-unreads">¶</span>
{/if}
<span>{name}</span>
</li>