diff options
Diffstat (limited to 'pages/editor/index.vue')
| -rw-r--r-- | pages/editor/index.vue | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pages/editor/index.vue b/pages/editor/index.vue new file mode 100644 index 0000000..4e9815a --- /dev/null +++ b/pages/editor/index.vue @@ -0,0 +1,25 @@ +<script setup lang="ts"> +definePageMeta({ + layout: 'editor' +}) +</script> + +<template> + <div id="title"> + <b>Select a quest or category to continue</b> + </div> +</template> + +<style lang="scss" scoped> +#title { + display: flex; + align-items: center; + justify-content: center; + height: 90%; + + b { + font-weight: bolder; + font-size: 1.5rem; + } +} +</style>
\ No newline at end of file |
