mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
refac: styling
This commit is contained in:
parent
705508a674
commit
3c03d5069d
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue