Files
FlightsAPI/resources/js/Components/FlightsGoneBy/GlassBox.vue
T
2026-04-03 18:14:42 +10:00

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>