Files
dvcp_v2_webapp/components/layout/AiDvPanel/borders/border15.vue

34 lines
550 B
Vue
Raw Normal View History

2024-02-06 17:08:29 +08:00
<template>
<section class="border15">
<h2>{{ title }}</h2>
<div class="slot">
<slot/>
</div>
</section>
</template>
<script>
export default {
name: 'border15',
props: ['title', 'theme']
}
</script>
<style lang="scss" scoped>
.border15 {
height: 100%;
h2 {
font-size: 14px;
height: 30px;
line-height: 30px;
padding: 0 10px;
background-image: linear-gradient(270deg, rgba(31, 67, 102, 0), rgba(31, 78, 102, 0.4));
margin-bottom: 12px;
}
.slot {
2024-02-07 14:23:53 +08:00
height: calc(100% - 30px);
2024-02-06 17:08:29 +08:00
}
}
</style>