Skip to content

Commit f41642f

Browse files
author
trolladam
authored
fix: separator background color (#295)
1 parent 5058648 commit f41642f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/www/src/lib/registry/default/ui/separator/Separator.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
88
<template>
99
<Separator
1010
:class="[
11-
cn('shrink-0 bg-secondary', props.class),
11+
cn('shrink-0 bg-border', props.class),
1212
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
1313
]"
1414
/>

apps/www/src/lib/registry/new-york/ui/separator/Separator.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const props = defineProps<SeparatorProps & { class?: string }>()
88
<template>
99
<Separator
1010
:class="[
11-
cn('shrink-0 bg-secondary', props.class),
11+
cn('shrink-0 bg-border', props.class),
1212
props.orientation === 'vertical' ? 'w-px h-full' : 'h-px w-full',
1313
]"
1414
/>

0 commit comments

Comments
 (0)