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/SearchModal.vue | |
| parent | 195e1111f286631fc871b49487755eaeafaf03a8 (diff) | |
Remove some redundant display:block specifiers
Diffstat (limited to 'src/components/SearchModal.vue')
| -rw-r--r-- | src/components/SearchModal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue index e9abef5..f350bcb 100644 --- a/src/components/SearchModal.vue +++ b/src/components/SearchModal.vue @@ -6,7 +6,7 @@ @keyup.enter="onSearch" @keyup.esc="onClose" @input="onInput" @keydown.down.prevent="onDownKey" @keydown.up.prevent="onUpKey"/> <div class="p-1 hover:cursor-pointer"> - <search-icon @click.stop="onSearch" class="block w-8 h-8"/> + <search-icon @click.stop="onSearch" class="w-8 h-8"/> </div> <div class="absolute top-[100%] w-full overflow-hidden" :style="suggContainerStyles"> <div v-for="(sugg, idx) of searchSuggs" |
