20 lines
308 B
Vue
20 lines
308 B
Vue
<template>
|
|
<div class="glass-panel">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.glass-panel {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(20, 20, 20, 0.05);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
padding: 20px;
|
|
}
|
|
</style> |