Files
go-view/src/views/chart/ContentEdit/components/EditRange/index.vue
T
2022-01-26 15:46:25 +08:00

23 lines
516 B
Vue

<template>
<div class="go-edit-range">
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
@include go(edit-range) {
position: relative;
height: 1080px;
width: 1920px;
border: 1px solid;
background-color: #333;
border-radius: 15px;
@include filter-bg-color('background-color2');
@include fetch-theme('box-shadow');
@include filter-border-color('hover-border-color');
@include fetch-theme-custom('border-color', 'background-color4');
}
</style>