fix: separator background color

This commit is contained in:
Adam Troll 2024-01-20 12:15:22 +01:00
parent 50586487d5
commit e374125193
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
<template>
<Separator
: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',
]"
/>

View File

@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
<template>
<Separator
: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',
]"
/>