Skip to content

Commit 40c3ee6

Browse files
committed
Fix Button
1 parent 4c2ad09 commit 40c3ee6

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

components/Products/ProductFilters.vue

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,33 @@
2727
<div class="mb-8">
2828
<h3 class="font-semibold mb-4">STØRRELSE</h3>
2929
<div class="grid grid-cols-3 gap-2">
30-
<Button :selected="true" variant="filter" :disabled="true"
31-
>Large</Button
32-
>
30+
<CommonButton :selected="true" variant="filter" :disabled="true">
31+
Large
32+
</CommonButton>
3333
</div>
3434
</div>
3535

3636
<div class="mb-8">
3737
<h3 class="font-semibold mb-4">FARGE</h3>
3838
<div class="grid grid-cols-3 gap-2">
39-
<Button
39+
<CommonButton
4040
:disabled="true"
41-
class="w-8 h-8 rounded-full bg-blue-500 p-0 border-0 shadow-none"
41+
variant="color"
42+
class="bg-blue-500"
4243
title="Blue"
4344
/>
4445
</div>
4546
</div>
4647

47-
<Button variant="reset" class="mt-4 w-full" :disabled="true">
48+
<CommonButton variant="reset" class="mt-4 w-full" :disabled="true">
4849
Resett filter
49-
</Button>
50+
</CommonButton>
5051
</div>
5152
</div>
5253
</template>
54+
55+
<script setup>
56+
import Checkbox from '~/components/common/Checkbox.vue'
57+
import RangeSlider from '~/components/common/RangeSlider.vue'
58+
import CommonButton from '~/components/common/CommonButton.vue'
59+
</script>

0 commit comments

Comments
 (0)