We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbde551 commit ed46b9aCopy full SHA for ed46b9a
1 file changed
app/components/Tag/Static.vue
@@ -13,8 +13,11 @@ const props = withDefaults(
13
<template>
14
<component
15
:is="as"
16
- class="bg-bg-muted text-fg-muted inline-flex gap-x-1 items-center justify-center font-mono border border-transparent rounded-md text-xs px-2 py-0.5 outline-none"
17
- :class="{ 'opacity-80 border-dashed': variant === 'ghost' }"
+ class="bg-bg-muted text-fg-muted inline-flex gap-x-1 items-center justify-center font-mono border rounded-md text-xs px-2 py-0.5 outline-none"
+ :class="{
18
+ 'border-transparent': variant === 'default',
19
+ 'opacity-80 border-muted border-dashed': variant === 'ghost',
20
+ }"
21
>
22
<span v-if="classicon" class="size-[1em]" :class="classicon" aria-hidden="true" />
23
<slot />
0 commit comments