Skip to content

Commit 50e49d9

Browse files
authored
Merge pull request #1496 from w3bdesign/develop
Nuxt auto import
2 parents a6952c9 + 478a17f commit 50e49d9

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

components/Cart/CartContents.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
*/
3535
import { computed, ref, onMounted } from "vue";
3636
import { useCart } from "@/store/useCart";
37-
import CommonButton from "@/components/common/CommonButton.vue";
3837
3938
const props = defineProps({
4039
showCheckoutButton: {

components/Layout/LayoutNavbar.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<header
33
role="banner"
4-
class="container flex flex-col justify-center px-0 pt-4 md:pt-6 mx-auto mb-6"
4+
class="container flex flex-col justify-center px-0 pt-4 md:pt-6 mx-auto mb-6 max-w-[1400px]"
55
>
66
<div class="flex flex-wrap lg:px-4 items-center">
77
<div class="pr-2 my-2 lg:w-3/12 md:w-10/12">
@@ -47,9 +47,3 @@
4747
</div>
4848
</header>
4949
</template>
50-
51-
<style scoped>
52-
header {
53-
max-width: 1400px;
54-
}
55-
</style>

0 commit comments

Comments
 (0)