Files
edgeKey/components/Content.vue
2026-04-21 11:56:35 +08:00

23 lines
377 B
Vue

<template>
<div id="page-container">
<div id="page-content" class="p-5 pb-12 min-h-screen">
<slot />
</div>
</div>
</template>
<style>
/* Page Transition Animation */
body.page-transition #page-content {
opacity: 0;
}
</style>
<style scoped>
/* Page Transition Animation */
#page-content {
opacity: 1;
transition: opacity 0.3s ease-in-out;
}
</style>