BUG 30546

This commit is contained in:
aixianling
2022-07-18 11:31:40 +08:00
parent 70c6d61e23
commit 068cbb2916
3 changed files with 138 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
<template>
<section class="AiGroup">
<slot/>
</section>
</template>
<script>
export default {
name: "AiGroup"
}
</script>
<style lang="scss" scoped>
.AiGroup {
background: #FFFFFF;
box-shadow: inset 0px -1px 0px 0px #DDDDDD;
padding-left: 32px;
& + .AiGroup {
margin-top: 16px;
}
}
</style>