Skip to content

Commit

Permalink
style: user macro style
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Nov 13, 2024
1 parent 0a596d6 commit 1b439a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{#if value}
<div class="flex items-center gap-2">
<UserIcon class="h-4 w-4" />
<span class="text-muted-foreground bg-muted rounded-full border px-1.5"> {$LL.table.macros[value]()} </span>
<UserIcon class="size-3" />
<span class="bg-muted rounded-full border px-1.5 text-xs text-gray-700"> {$LL.table.macros[value]()} </span>
</div>
{/if}
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
{/if}
{#each userFieldMacros as macro}
<Command.Item
class="h-12"
class="h-8"
value={macro}
onSelect={(currentValue) => {
value = currentValue === value ? null : currentValue
Expand Down

0 comments on commit 1b439a1

Please sign in to comment.