diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-06 20:04:03 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-06 20:04:03 +1000 |
| commit | 214bf396b7a946dcfc69dcfd768d3a5b21e0f4da (patch) | |
| tree | b236324c065c394a9cc5384329a63acb1b3e7bd2 /src/components/Tile.vue | |
| parent | 521c17523070d83e4b5878f56ad61bf37828a27e (diff) | |
During tutorial, avoid disabling actions the user has already used
For auto-mode and search, enable prerequisite actions when used
Diffstat (limited to 'src/components/Tile.vue')
| -rw-r--r-- | src/components/Tile.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Tile.vue b/src/components/Tile.vue index ab1538f..9c9fdfa 100644 --- a/src/components/Tile.vue +++ b/src/components/Tile.vue @@ -33,7 +33,7 @@ @click.stop="onInfoIconClick" @mousedown.stop @mouseup.stop/> </div> <transition name="fadein"> - <div v-if="inFlash" class="absolute w-full h-full top-0 left-0 bg-amber-500/70 z-20"></div> + <div v-if="inFlash" class="absolute w-full h-full top-0 left-0 rounded-[inherit] bg-amber-500/70 z-20"/> </transition> </div> <tile v-for="child in visibleChildren" :key="child.name" @@ -43,7 +43,7 @@ @info-click="onInnerInfoIconClick"/> </div> <transition name="fadein"> - <div v-if="inFlash" class="absolute w-full h-full top-0 left-0 bg-amber-500/70"></div> + <div v-if="inFlash" class="absolute w-full h-full top-0 left-0 rounded-[inherit] bg-amber-500/70"/> </transition> </div> </template> @@ -355,7 +355,7 @@ export default defineComponent({ }; }, infoIconClasses(): string { - return 'text-white/20 hover:text-white hover:cursor-pointer'; + return 'text-white/30 hover:text-white hover:cursor-pointer'; }, // For watching layoutNode data pos(){ |
