21 lines
353 B
Vue
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>
|