aboutsummaryrefslogtreecommitdiffstats
path: root/pages/editor/index.vue
blob: 55c75f3d0b7026bfdd86b8c08eca7bc24a3846d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>