forked from cerc-io/cosmos-explorer
fix: Fix style packaging weight problem
This commit is contained in:
parent
e0d95bf8a1
commit
51142eddd7
@ -72,58 +72,57 @@ function confirm() {
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- modal -->
|
<!-- modal -->
|
||||||
<div v-if="searchModalShow">
|
<div
|
||||||
|
v-if="searchModalShow"
|
||||||
|
class="cursor-pointer modal !pointer-events-auto !opacity-100 !visible"
|
||||||
|
@click="closeSearchModal"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="cursor-pointer modal pointer-events-auto opacity-100 visible"
|
class="relative modal-box cursor-default"
|
||||||
@click="closeSearchModal"
|
@click="(event) => preventClick(event)"
|
||||||
>
|
>
|
||||||
<div
|
<!-- header -->
|
||||||
class="relative modal-box cursor-default"
|
<div class="flex items-center justify-between">
|
||||||
@click="(event) => preventClick(event)"
|
<div
|
||||||
>
|
class="text-lg font-bold flex flex-col md:!flex-row justify-between items-baseline"
|
||||||
<!-- header -->
|
>
|
||||||
<div class="flex items-center justify-between">
|
<span class="mr-2">Search</span>
|
||||||
|
<span class="capitalize text-sm md:!text-base"
|
||||||
|
>Height/Transaction/Account Address</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<label
|
||||||
|
htmlFor="modal-pool-modal"
|
||||||
|
class="cursor-pointer"
|
||||||
|
@click="closeSearchModal"
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
icon="zondicons:close-outline"
|
||||||
|
class="text-2xl text-gray-500 dark:text-gray-400"
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<!-- body -->
|
||||||
|
<div class="mt-4">
|
||||||
|
<div class="">
|
||||||
|
<input
|
||||||
|
class="input flex-1 w-full !input-bordered"
|
||||||
|
v-model="searchQuery"
|
||||||
|
placeholder="Height/Transaction/Account Address"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="text-lg font-bold flex flex-col md:!flex-row justify-between items-baseline"
|
class="mt-2 text-right text-sm text-error"
|
||||||
|
v-show="errorMessage"
|
||||||
>
|
>
|
||||||
<span class="mr-2">Search</span>
|
{{ errorMessage }}
|
||||||
<span class="capitalize text-sm md:!text-base"
|
|
||||||
>Height/Transaction/Account Address</span
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<label
|
|
||||||
htmlFor="modal-pool-modal"
|
|
||||||
class="cursor-pointer"
|
|
||||||
@click="closeSearchModal"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
icon="zondicons:close-outline"
|
|
||||||
class="text-2xl text-gray-500 dark:text-gray-400"
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
<!-- body -->
|
|
||||||
<div class="mt-4">
|
|
||||||
<div class="">
|
|
||||||
<input
|
|
||||||
class="input flex-1 w-full input-bordered"
|
|
||||||
v-model="searchQuery"
|
|
||||||
placeholder="Height/Transaction/Account Address"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
class="mt-2 text-right text-sm text-error"
|
|
||||||
v-show="errorMessage"
|
|
||||||
>
|
|
||||||
{{ errorMessage }}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- foot -->
|
</div>
|
||||||
<div class="mt-6">
|
<!-- foot -->
|
||||||
<button class="w-full btn btn-primary" @click="confirm">
|
<div class="mt-6">
|
||||||
Confirm
|
<button class="w-full btn btn-primary" @click="confirm">
|
||||||
</button>
|
Confirm
|
||||||
</div>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user