diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-05 16:09:02 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-05 16:09:02 +1000 |
| commit | d554c2ffc79dccc366626270760a73a7cf6772aa (patch) | |
| tree | 9f701d83191dc35d7b5578dd2437aa021c039ea4 /src/components/TutorialPane.vue | |
| parent | 195e1111f286631fc871b49487755eaeafaf03a8 (diff) | |
Remove some redundant display:block specifiers
Diffstat (limited to 'src/components/TutorialPane.vue')
| -rw-r--r-- | src/components/TutorialPane.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TutorialPane.vue b/src/components/TutorialPane.vue index 0734d0b..7667f60 100644 --- a/src/components/TutorialPane.vue +++ b/src/components/TutorialPane.vue @@ -1,7 +1,7 @@ <template> <div :style="styles" class="relative flex flex-col justify-between"> <close-icon @click.stop="onClose" - class="block absolute top-2 right-2 w-8 h-8 hover:cursor-pointer"/> + class="absolute top-2 right-2 w-8 h-8 hover:cursor-pointer"/> <h1 class="text-center text-lg font-bold pt-3 pb-2"> {{stage == 0 ? 'Welcome' : `Tutorial (Step ${stage} of ${lastStage})`}} </h1> |
