fix(Slideover): bind rounded class to panel (#2187)

Co-authored-by: malik jouda <m.jouda@approved.tech>
This commit is contained in:
Malik-Jouda
2024-09-12 11:42:22 +03:00
committed by GitHub
parent a0d94fabdf
commit bf32baaab0

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.padding]">
<HDialogPanel :class="[ui.base, sideType === 'horizontal' ? [ui.width, 'h-full'] : [ui.height, 'w-full'], ui.background, ui.ring, ui.rounded, ui.padding]">
<slot />
</HDialogPanel>
</TransitionChild>