17 lines
309 B
Vue
17 lines
309 B
Vue
<template>
|
|
<div class="min-h-screen bg-gradient-to-br from-gray-50 to-gray-100">
|
|
<NuxtRouteAnnouncer />
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
@import './assets/css/main.css';
|
|
|
|
/* iOS 風格增強 */
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
</style>
|