diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-28 20:28:59 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-28 20:37:53 +1100 |
| commit | 3c5144ece678063ba3cd9d96dce98b9479d4205c (patch) | |
| tree | d0e12fd82bbc6eab35fb1e6ad08260ff5a9db4c0 /src/components/HelpModal.vue | |
| parent | 94a8ad9b067e5a2c442ce47ce72d1a53eb444160 (diff) | |
Adjust info and help modal styling
Fix minor typos in store.ts, App.vue, IconButton, etc
Diffstat (limited to 'src/components/HelpModal.vue')
| -rw-r--r-- | src/components/HelpModal.vue | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/components/HelpModal.vue b/src/components/HelpModal.vue index 7eb2ea2..5ebc36e 100644 --- a/src/components/HelpModal.vue +++ b/src/components/HelpModal.vue @@ -182,9 +182,10 @@ <br/> <h1 class="text-lg font-bold">Keyboard Shortcuts</h1> <ul class="list-disc pl-4"> - <li>Ctrl-F opens the search bar</li> - <li>Ctrl-Shift-F toggles the search animation</li> - <li>Esc closes an open pane, and cancels an active search or auto mode</li> + <li><span class="font-bold">Ctrl-F</span> opens the search bar</li> + <li><span class="font-bold">Ctrl-Shift-F</span> toggles the search animation</li> + <li><span class="font-bold">Esc</span> closes an open pane, + and cancels an active search or auto mode</li> </ul> <br/> <h1 class="text-lg font-bold">Unusual Node Names</h1> @@ -419,6 +420,9 @@ :disabled="tutOpen" @click.stop="onStartTutorial"> Start Tutorial </s-button> + <p class="absolute text-xs md:text-sm text-stone-500 right-2 bottom-2"> + Last updated 28/01/23 + </p> </div> </div> </template> |
