fix(Slideover): bind shadow class to panel (#2201)

This commit is contained in:
Malik-Jouda
2024-09-16 12:25:02 +03:00
committed by GitHub
parent 67c6a74ed1
commit d22526c0c1

View File

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