15 lines
390 B
Vue
15 lines
390 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<main
|
|
class="dimensions scrollbar background overflow-auto d-flex flex-column rounded-card gap-2 p-4 animate__animated-sm animate__delay-1-5s animate__fadeInDown"
|
|
>
|
|
<Navigation />
|
|
<NuxtPage
|
|
class="scrollbar overflow-y-auto mb-3 mb-sm-0 py-4 pe-3 fade-mask"
|
|
/>
|
|
</main>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|