Skip to content

Commit

Permalink
fix: separator background color (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
trolladam authored Jan 20, 2024
1 parent 5058648 commit f41642f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]"
/>
Expand Down

0 comments on commit f41642f

Please sign in to comment.