aboutsummaryrefslogtreecommitdiffstats
path: root/pages/editor/index.vue
blob: 4e9815abf530e7dd647617994e896e7f7ab30a99 (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>