fix: separator background color (#295)
This commit is contained in:
parent
50586487d5
commit
f41642f5d8
|
|
@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
|
||||||
<template>
|
<template>
|
||||||
<Separator
|
<Separator
|
||||||
:class="[
|
:class="[
|
||||||
cn('shrink-0 bg-secondary', props.class),
|
cn('shrink-0 bg-border', props.class),
|
||||||
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
|
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
|
||||||
]"
|
]"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
|
||||||
<template>
|
<template>
|
||||||
<Separator
|
<Separator
|
||||||
:class="[
|
:class="[
|
||||||
cn('shrink-0 bg-secondary', props.class),
|
cn('shrink-0 bg-border', props.class),
|
||||||
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
|
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
|
||||||
]"
|
]"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user