29 lines
388 B
Vue
29 lines
388 B
Vue
<template>
|
|
<div>
|
|
<NuxtRouteAnnouncer />
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
useHead({
|
|
bodyAttrs: {
|
|
class: 'bg-slate-100 dark:bg-slate-900'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
button,
|
|
input {
|
|
@apply px-4 py-2 m-4 rounded-md text-center font-bold
|
|
}
|
|
|
|
button {
|
|
@apply bg-esyellow text-slate-700;
|
|
}
|
|
|
|
input[type="email"] {
|
|
@apply bg-slate-900 text-esyellow;
|
|
}
|
|
</style> |