Files
Situation-Awareness-Platfor…/src/components/CreateFormBox/index.vue
2025-03-12 18:41:20 +08:00

17 lines
300 B
Vue

<template>
<div class="form-container">
<slot></slot>
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
.form-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 32px;
margin-top: 20px;
}
</style>