13 lines
194 B
Vue
13 lines
194 B
Vue
<template>
|
|
<div class="flex flex-col items-center w-full h-full">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dark-mode body {
|
|
background-color: #091a28;
|
|
color: #ebf4f1;
|
|
}
|
|
</style>
|