File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -174,13 +174,15 @@ const items = computed<DropdownMenuItem[][]>(() => ([[{
174174 />
175175
176176 <template #chip-leading =" { item } " >
177- <span
178- :style =" {
179- '--chip-light': `var(--color-${(item as any).chip}-500)`,
180- '--chip-dark': `var(--color-${(item as any).chip}-400)`
181- }"
182- class =" ms-0.5 size-2 rounded-full bg-(--chip-light) dark:bg-(--chip-dark)"
183- />
177+ <div class =" inline-flex items-center justify-center shrink-0 size-5" >
178+ <span
179+ class =" rounded-full ring ring-bg bg-(--chip-light) dark:bg-(--chip-dark) size-2"
180+ :style =" {
181+ '--chip-light': `var(--color-${(item as any).chip}-500)`,
182+ '--chip-dark': `var(--color-${(item as any).chip}-400)`
183+ }"
184+ />
185+ </div >
184186 </template >
185187 </UDropdownMenu >
186188</template >
You can’t perform that action at this time.
0 commit comments