diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-28 21:40:13 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-28 21:41:47 +1100 |
| commit | 304274b1380f955b6e1913428f6dbbc9efcf0bcf (patch) | |
| tree | 66f7fdf8b59becba06d5f230eb4ba9849378e220 /src/App.vue | |
| parent | 50e1e7ae48daf04323093a438aff2d55ff20193d (diff) | |
Add info-icon to non-leaf tiles
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue index eb00856..b28531a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -489,12 +489,12 @@ export default defineComponent({ :lytOpts="lytOpts" :uiOpts="uiOpts" @detached-ancestor-clicked="onDetachedAncestorClicked" @info-icon-clicked="onInnerInfoIconClicked"/> <!-- Icons --> + <help-icon @click="onHelpIconClick" + class="absolute bottom-[6px] left-[6px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> <search-icon @click="onSearchIconClick" - class="absolute top-[6px] right-[54px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> + class="absolute bottom-[6px] left-[30px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> <play-icon @click="onPlayIconClick" - class="absolute top-[6px] right-[30px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> - <help-icon @click="onHelpIconClick" - class="absolute top-[6px] right-[6px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> + class="absolute bottom-[6px] left-[54px] w-[18px] h-[18px] text-white/40 hover:text-white hover:cursor-pointer"/> <!-- Modals --> <transition name="fade"> <tile-info-modal v-if="infoModalNode != null" :tolNode="infoModalNode" :uiOpts="uiOpts" |
