23 lines
342 B
Vue
23 lines
342 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="glass-box glass glass-border">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.glass-box {
|
|
width: 50%;
|
|
height: 50dvh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap:1em;
|
|
padding: 2em;
|
|
}
|
|
</style>
|