Skip to content

Commit 92755c6

Browse files
committed
fix: position of search section
See: FE-92
1 parent 4a6fbf3 commit 92755c6

File tree

1 file changed

+21
-20
lines changed
  • frontend/layers/products/app/pages/products

1 file changed

+21
-20
lines changed

frontend/layers/products/app/pages/products/index.vue

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,27 @@ const {
9090
@close="isOpen = false"
9191
/>
9292
</template>
93+
<section
94+
class="flex flex-col gap-xl align-middle justify-center max-w-24xl mx-auto p-md h-screen max-h-[1400px] hero-section -mt-[76px] rounded-b-full"
95+
>
96+
<div class="hero-section__background-effects" />
97+
<BaseHeading
98+
is="h2"
99+
size="lg"
100+
class="text-center"
101+
>
102+
{{ $t('products.landing_page.search.title') }}
103+
</BaseHeading>
104+
<BlockchainSearchInput
105+
v-model="searchParams"
106+
class="w-screen sm:w-full max-w-[920px] -ml-md sm:mx-auto"
107+
:results="data"
108+
:available-type-filters
109+
:is-loading="status === 'pending'"
110+
:has-error="!!error"
111+
@search="execute()"
112+
/>
113+
</section>
93114
<div class="flex flex-col gap-11xl">
94115
<section class="mt-11xl p-md">
95116
<h2 class="text-center">
@@ -338,26 +359,6 @@ const {
338359
</div>
339360
</ProductLandingpageSection>
340361
</div>
341-
<section
342-
class="flex flex-col gap-xl align-middle justify-center max-w-24xl mx-auto p-md h-screen max-h-[1400px] hero-section -mt-[76px] rounded-b-full"
343-
>
344-
<div class="hero-section__background-effects" />
345-
<BaseHeading
346-
is="h2"
347-
size="lg"
348-
class="text-center"
349-
>
350-
{{ $t('products.landing_page.search.title') }}
351-
</BaseHeading>
352-
<BlockchainSearchInput
353-
v-model="searchParams"
354-
class="w-screen sm:w-full max-w-[920px] -ml-md sm:mx-auto"
355-
:results="data"
356-
:is-loading="status === 'pending'"
357-
:has-error="!!error"
358-
@search="execute()"
359-
/>
360-
</section>
361362
<section class="mt-11xl p-md">
362363
<h2
363364
:id="id.api"

0 commit comments

Comments
 (0)