Skip to content

Commit 8e687c9

Browse files
committed
Npm refresh
1 parent 6d34fa4 commit 8e687c9

File tree

5 files changed

+1860
-2638
lines changed

5 files changed

+1860
-2638
lines changed

components/Category/CategoryShowAll.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<template>
22
<div v-if="data.productCategories">
3-
<section class=" bg-white">
4-
<div
5-
class="flex justify-center align-middle flex-col md:flex-row"
6-
>
3+
<section class="bg-white">
4+
<div class="flex justify-center align-middle flex-col md:flex-row">
75
<template v-for="nodes in data.productCategories">
86
<template v-for="category in nodes">
97
<div v-if="category.slug !== undefined" :key="category.id">
@@ -14,7 +12,9 @@
1412
query: { id: category.id },
1513
}"
1614
>
17-
<div class="cursor-pointer ml-4 mt-[5rem] md:mt-[20rem] w-full md:w-64 flex-row">
15+
<div
16+
class="cursor-pointer ml-4 mt-[5rem] md:mt-[20rem] w-full md:w-64 flex-row"
17+
>
1818
<div
1919
class="p-4 min-w-[10rem] flex items-center justify-center w-full h-16 text-center border border-gray-300 rounded-lg shadow hover:shadow-outline"
2020
>

components/Layout/LayoutFooter.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<footer
44
class="px-6 text-center bg-white border border-gray-300 rounded-lg shadow-lg"
55
>
6-
<div class="p-6">
7-
Copyright reserved &copy; {{ todayDate }} Daniel
8-
</div>
6+
<div class="p-6">Copyright reserved &copy; {{ todayDate }} Daniel</div>
97
</footer>
108
</div>
119
</template>

layouts/default.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<div class="flex flex-col min-h-screen">
33
<LayoutNavbar />
44
<div class="container mx-auto max-w-[84.375rem] flex-grow">
5-
<main >
6-
<slot />
7-
</main>
5+
<main>
6+
<slot />
7+
</main>
88
</div>
99
<LayoutFooter />
1010
<LayoutStickyFooter />

0 commit comments

Comments
 (0)