mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
restyle invoice filters on medium size screens
This commit is contained in:
@ -27,10 +27,11 @@
|
||||
</label>
|
||||
|
||||
<div
|
||||
class="
|
||||
flex flex-col
|
||||
space-y-3
|
||||
lg:flex-row lg:space-x-4 lg:space-y-0 lg:items-center
|
||||
class="flex flex-col space-y-3"
|
||||
:class="
|
||||
rowOnXl
|
||||
? 'xl:flex-row xl:space-x-4 xl:space-y-0 xl:items-center'
|
||||
: 'lg:flex-row lg:space-x-4 lg:space-y-0 lg:items-center'
|
||||
"
|
||||
>
|
||||
<slot />
|
||||
@ -45,6 +46,10 @@ defineProps({
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
rowOnXl: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
})
|
||||
|
||||
defineEmits(['clear'])
|
||||
|
||||
Reference in New Issue
Block a user