17 lines
300 B
Vue
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>
|