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