diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-05-23 22:23:53 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-05-23 22:23:53 +1000 |
| commit | c2f8a84645dbb0d3159ad5b3831d0597854690ce (patch) | |
| tree | 979d48dafca39908c711a31eb0a8a89f9e60af93 /src/components/SettingsModal.vue | |
| parent | 16503a01759bc4f3a930c957367b972b8e9c17cb (diff) | |
Add help modal button that opens tutorial
Needed to add code for skipping tutorial pane's welcome message.
Also fixed small unwanted click-propagation bug in SettingsModal.
Diffstat (limited to 'src/components/SettingsModal.vue')
| -rw-r--r-- | src/components/SettingsModal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SettingsModal.vue b/src/components/SettingsModal.vue index 5f3b3c4..4af08c5 100644 --- a/src/components/SettingsModal.vue +++ b/src/components/SettingsModal.vue @@ -47,7 +47,7 @@ export default defineComponent({ <div class="fixed left-0 top-0 w-full h-full bg-black/40" @click="onCloseClick"> <div class="absolute left-1/2 -translate-x-1/2 w-4/5 top-1/2 -translate-y-1/2 max-h-[80%] p-3 bg-stone-50 visible rounded-md shadow shadow-black"> - <close-icon @click="onCloseClick" ref="closeIcon" + <close-icon @click.stop="onCloseClick" ref="closeIcon" class="block absolute top-2 right-2 w-6 h-6 hover:cursor-pointer" /> <h1 class="text-xl font-bold mb-2">Settings</h1> <hr class="border-stone-400"/> |
