11-mes-new/src/views/EquipmentManager/components/TechyBox.vue
2022-11-10 10:39:46 +08:00

21 lines
353 B
Vue

<template>
<div class="techy-box">
<slot />
</div>
</template>
<script>
export default {}
</script>
<style scoped>
.techy-box {
background: transparent;
box-shadow: inset 0 0 calc(17px * var(--beilv)) 0 rgba(255, 255, 255, 0.2);
display: inline-block;
height: 100%;
width: 100%;
border-radius: calc(4px * var(--beilv));
}
</style>