fix: `dialog` and `drawer` footer gap in small screen (#5025)
parent
fe236ea929
commit
21d37a1be0
|
@ -7,10 +7,7 @@ const props = defineProps<{ class?: any }>();
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="
|
:class="
|
||||||
cn(
|
cn('flex flex-row flex-col-reverse justify-end gap-x-2', props.class)
|
||||||
'flex flex-col-reverse sm:flex-row sm:justify-end sm:gap-x-2',
|
|
||||||
props.class,
|
|
||||||
)
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
|
|
@ -7,10 +7,7 @@ const props = defineProps<{ class?: any }>();
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="
|
:class="
|
||||||
cn(
|
cn('flex flex-row flex-col-reverse justify-end gap-x-2', props.class)
|
||||||
'flex flex-col-reverse sm:flex-row sm:justify-end sm:gap-x-2',
|
|
||||||
props.class,
|
|
||||||
)
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
|
Loading…
Reference in New Issue