diff options
| author | Kit La Touche <kit@transneptune.net> | 2025-01-05 17:09:28 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2025-01-05 17:09:28 -0500 |
| commit | f81065314aaa5c210a4245e65469906b277c363e (patch) | |
| tree | ff9fadae4649828555d4ac9422731b9b51f0bd76 /ui/lib/components | |
| parent | 0675b417cb6f55edf1f1bdb59c26752e3c6b374f (diff) | |
Stylize channel badges
Diffstat (limited to 'ui/lib/components')
| -rw-r--r-- | ui/lib/components/Channel.svelte | 4 |
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> |
