diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-22 20:27:56 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-22 20:27:56 +1100 |
| commit | ef3e6b2fdb8f645be71b7544178cfe2343eaafd0 (patch) | |
| tree | 7a1ab9c9b4e2cce8638dfa11cdf7407c0f196a7f | |
| parent | 4b81d58655deef4223884b5d6e043e9e9f1b0d90 (diff) | |
Add 'prototype' to title
| -rw-r--r-- | src/App.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index e474386..e493433 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,8 +3,15 @@ :style="{scrollbarColor: store.color.altDark2 + ' ' + store.color.bgDark}"> <!-- Title bar --> <div class="flex gap-2 p-2" :style="{backgroundColor: store.color.bgDark2}"> + <div class="flex flex-col items-center" :style="{color: store.color.altDark}"> + <h1 class="my-auto text-xl hover:cursor-pointer" + @click="onReset" title="Reset Timeline">Chrona</h1> + <div class="text-xs">(prototype)</div> + </div> + <!-- <h1 class="my-auto ml-2 sm:ml-2 text-4xl hover:cursor-pointer" :style="{color: store.color.altDark}" - @click="onReset" title="Reset Timeline">Chrona</h1> + @click="onReset" title="Reset Timeline">Chrona (prototype)</h1> + --> <div class="mx-auto"/> <!-- Spacer --> <!-- Icons --> <icon-button :size="45" :style="buttonStyles" @click="helpOpen = true" title="Show help info"> |
