11-mes-new/src/views/EquipmentManager/components/TechyBox.vue
2022-11-07 08:45:49 +08:00

21 lines
316 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 16px 1px rgba(255, 255, 255, 0.2);
display: inline-block;
height: 100%;
width: 100%;
border-radius: .25rem;
}
</style>