refac: styling

This commit is contained in:
Timothy J. Baek 2024-09-18 01:31:49 +02:00
parent 705508a674
commit 3c03d5069d
1 changed files with 2 additions and 2 deletions

View File

@ -424,7 +424,7 @@
<div class="px-3.5 mb-1 flex gap-0.5 flex-wrap">
<button
class="px-2.5 py-[1px] text-xs transition {selectedTagName === null
? 'bg-gray-850'
? 'bg-gray-900'
: ' '} rounded-md"
on:click={async () => {
selectedTagName = null;
@ -436,7 +436,7 @@
{#each $tags.filter((t) => t.name !== 'pinned') as tag}
<button
class="px-2.5 py-[1px] text-xs transition {selectedTagName === tag.name
? 'bg-gray-850'
? 'bg-gray-900'
: ''} rounded-md"
on:click={async () => {
selectedTagName = tag.name;