egirlskey/packages/frontend/src/components/form/split.vue

28 lines
450 B
Vue
Raw Normal View History

2021-12-30 12:47:48 +00:00
<template>
<div class="terlnhxf _formBlock">
<slot></slot>
</div>
</template>
<script lang="ts" setup>
const props = withDefaults(defineProps<{
2022-06-29 07:07:38 +00:00
minWidth?: number;
2021-12-30 12:47:48 +00:00
}>(), {
2022-06-29 07:07:38 +00:00
minWidth: 210,
2021-12-30 12:47:48 +00:00
});
const minWidth = props.minWidth + 'px';
</script>
<style lang="scss" scoped>
2021-12-30 12:47:48 +00:00
.terlnhxf {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(v-bind('minWidth'), 1fr));
grid-gap: 12px;
> ::v-deep(*) {
margin: 0 !important;
}
}
</style>