|
1 | 1 | <template>
|
2 | 2 | <div class="w-full md:w-64 flex-shrink-0">
|
3 | 3 | <div class="bg-white px-8 pb-8 sm:px-6 sm:pb-6 rounded-lg shadow-sm">
|
4 |
| - <!-- PRODUCT TYPE --> |
5 | 4 | <div class="mb-8">
|
6 | 5 | <h3 class="font-semibold mb-4">PRODUKT TYPE</h3>
|
7 | 6 | <div class="space-y-2">
|
8 |
| - <!-- Example checkboxes, replace with dynamic content later --> |
9 | 7 | <div class="flex items-center">
|
10 |
| - <input type="checkbox" id="type1" class="mr-2" /> |
11 |
| - <label for="type1" class="text-sm">Type 1</label> |
| 8 | + <input type="checkbox" id="clothing" class="form-checkbox h-4 w-4 text-blue-600 rounded" disabled /> |
| 9 | + <label for="clothing" class="ml-2 text-sm">Clothing</label> |
12 | 10 | </div>
|
13 | 11 | <div class="flex items-center">
|
14 |
| - <input type="checkbox" id="type2" class="mr-2" /> |
15 |
| - <label for="type2" class="text-sm">Type 2</label> |
| 12 | + <input type="checkbox" id="tshirts" class="form-checkbox h-4 w-4 text-blue-600 rounded" disabled /> |
| 13 | + <label for="tshirts" class="ml-2 text-sm">Tshirts</label> |
| 14 | + </div> |
| 15 | + <div class="flex items-center"> |
| 16 | + <input type="checkbox" id="uncategorized" class="form-checkbox h-4 w-4 text-blue-600 rounded" disabled /> |
| 17 | + <label for="uncategorized" class="ml-2 text-sm">Uncategorized</label> |
16 | 18 | </div>
|
17 | 19 | </div>
|
18 | 20 | </div>
|
19 | 21 |
|
20 |
| - <!-- PRICE --> |
21 | 22 | <div class="mb-8">
|
22 | 23 | <h3 class="font-semibold mb-4">PRIS</h3>
|
23 | 24 | <div class="flex items-center space-x-2">
|
24 |
| - <input type="range" min="0" max="1000" class="w-full" /> |
25 |
| - <span class="text-sm">kr 0 - kr 1000</span> |
| 25 | + <input type="range" min="0" max="1000" class="w-full accent-blue-600" disabled /> |
| 26 | + </div> |
| 27 | + <div class="flex justify-between text-sm mt-1"> |
| 28 | + <span>kr 0</span> |
| 29 | + <span>kr 1000</span> |
26 | 30 | </div>
|
27 | 31 | </div>
|
28 | 32 |
|
29 |
| - <!-- SIZE --> |
30 | 33 | <div class="mb-8">
|
31 | 34 | <h3 class="font-semibold mb-4">STØRRELSE</h3>
|
32 |
| - <div class="grid grid-cols-3 gap-2"> |
33 |
| - <button class="px-2 py-1 rounded border text-sm">S</button> |
34 |
| - <button class="px-2 py-1 rounded border text-sm">M</button> |
35 |
| - <button class="px-2 py-1 rounded border text-sm">L</button> |
| 35 | + <div class="grid grid-cols-1 gap-2"> |
| 36 | + <button class="px-4 py-1 rounded border text-sm bg-gray-100 text-gray-800" disabled>Large</button> |
36 | 37 | </div>
|
37 | 38 | </div>
|
38 | 39 |
|
39 |
| - <!-- COLOR --> |
40 | 40 | <div class="mb-8">
|
41 | 41 | <h3 class="font-semibold mb-4">FARGE</h3>
|
42 |
| - <div class="grid grid-cols-3 gap-2"> |
43 |
| - <button class="w-8 h-8 rounded-full bg-red-500"></button> |
44 |
| - <button class="w-8 h-8 rounded-full bg-blue-500"></button> |
45 |
| - <button class="w-8 h-8 rounded-full bg-green-500"></button> |
| 42 | + <div class="grid grid-cols-1 gap-2"> |
| 43 | + <button class="w-8 h-8 rounded-full bg-blue-500" disabled></button> |
46 | 44 | </div>
|
47 | 45 | </div>
|
48 | 46 |
|
49 |
| - <button class="mt-4 w-full py-2 rounded bg-gray-200 text-gray-700 text-sm font-medium">Resett filter</button> |
| 47 | + <button class="mt-4 w-full py-2 rounded bg-gray-100 text-gray-500 text-sm font-medium" disabled> |
| 48 | + Resett filter |
| 49 | + </button> |
50 | 50 | </div>
|
51 | 51 | </div>
|
52 | 52 | </template>
|
|
0 commit comments