You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
634 B
33 lines
634 B
<template>
|
|
<div class="setting_contaienr">
|
|
<div class="left_container"></div>
|
|
<div class="right_container"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.setting_contaienr {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 30px;
|
|
height: 580px;
|
|
box-sizing: border-box;
|
|
.left_container {
|
|
height: 580px;
|
|
width: 424px;
|
|
margin-right: 30px;
|
|
box-sizing: border-box;
|
|
border-radius: 16px;
|
|
background: #ffffff;
|
|
}
|
|
.right_container {
|
|
height: 580px;
|
|
flex: 1;
|
|
box-sizing: border-box;
|
|
border-radius: 16px;
|
|
background: #ffffff;
|
|
}
|
|
}
|
|
</style>
|