Skip to content

Commit d22526c

Browse files
authoredSep 16, 2024··
fix(Slideover): bind shadow class to panel (#2201)

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/runtime/components/overlays/Slideover.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</TransitionChild>
77

88
<TransitionChild as="template" :appear="appear" v-bind="transitionClass">
9-
<HDialogPanel :class="[ui.base, sideType === 'horizontal' ? [ui.width, 'h-full'] : [ui.height, 'w-full'], ui.background, ui.ring, ui.rounded, ui.padding]">
9+
<HDialogPanel :class="[ui.base, sideType === 'horizontal' ? [ui.width, 'h-full'] : [ui.height, 'w-full'], ui.background, ui.ring, ui.rounded, ui.padding, ui.shadow]">
1010
<slot />
1111
</HDialogPanel>
1212
</TransitionChild>

0 commit comments

Comments
 (0)
Please sign in to comment.