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 @@ -157,13 +157,15 @@ const items = computed<DropdownMenuItem[][]>(() => ([[{
157157 />
158158
159159 <template #chip-leading =" { item } " >
160- <span
161- :style =" {
162- '--color-light': `var(--color-${(item as any).chip}-500)`,
163- '--color-dark': `var(--color-${(item as any).chip}-400)`
164- }"
165- class =" ms-0.5 size-2 rounded-full bg-(--color-light) dark:bg-(--color-dark)"
166- />
160+ <div class =" inline-flex items-center justify-center shrink-0 size-5" >
161+ <span
162+ class =" rounded-full ring ring-bg bg-(--chip-light) dark:bg-(--chip-dark) size-2"
163+ :style =" {
164+ '--chip-light': `var(--color-${(item as any).chip}-500)`,
165+ '--chip-dark': `var(--color-${(item as any).chip}-400)`
166+ }"
167+ />
168+ </div >
167169 </template >
168170 </UDropdownMenu >
169171</template >
You can’t perform that action at this time.
0 commit comments