add filter input and sorting select
This commit is contained in:
parent
f153cb4dfc
commit
3a918879ec
18
src/App.vue
18
src/App.vue
@ -11,9 +11,25 @@
|
|||||||
<Header/>
|
<Header/>
|
||||||
|
|
||||||
<div class="p-10">
|
<div class="p-10">
|
||||||
<h2 class="text-3xl font-bold mb-8">Все кроссовки</h2>
|
<div class="flex justify-between items-center mb-8">
|
||||||
|
<h2 class="text-3xl font-bold">Все кроссовки</h2>
|
||||||
|
|
||||||
|
<div class="flex gap-4 flex-wrap">
|
||||||
|
<select class="py-2 px-3 border rounded-md outline-none">
|
||||||
|
<option>По названию</option>
|
||||||
|
<option>По цене (сначала дешевые)</option>
|
||||||
|
<option>По цене (сначала дорогие)</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<div class="relative">
|
||||||
|
<img class="absolute top-3 left-4" src="/search.svg" alt="Search">
|
||||||
|
<input class="border rounded-md py-2 pl-11 pr-4 outline-none focus:border-gray-400" type="text" placeholder="Поиск">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<CardList/>
|
<CardList/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user