Skip to content

Commit

Permalink
Merge pull request #1107 from w3bdesign/dev
Browse files Browse the repository at this point in the history
Prettier
  • Loading branch information
w3bdesign committed Jul 9, 2023
2 parents a94f6bd + b510b76 commit 8303caf
Show file tree
Hide file tree
Showing 4 changed files with 295 additions and 346 deletions.
11 changes: 9 additions & 2 deletions components/Layout/LayoutMobileMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ const displayMobileMenu = () => {
.burger.burger-squeeze .burger-lines,
.burger.burger-squeeze .burger-lines:after,
.burger.burger-squeeze .burger-lines:before {
transition: 0.2s top 0.2s, 0.1s left, 0.2s transform,
transition:
0.2s top 0.2s,
0.1s left,
0.2s transform,
0.4s background-color 0.2s;
}
.burger.burger-squeeze .burger-lines:after,
Expand All @@ -127,7 +130,11 @@ const displayMobileMenu = () => {
.burger.burger-squeeze.open .burger-lines,
.burger.burger-squeeze.open .burger-lines:after,
.burger.burger-squeeze.open .burger-lines:before {
transition: 0.2s background-color, 0.2s top, 0.2s left, 0.2s transform 0.15s;
transition:
0.2s background-color,
0.2s top,
0.2s left,
0.2s transform 0.15s;
}
.burger.burger-squeeze.open .burger-lines {
background-color: transparent;
Expand Down
4 changes: 2 additions & 2 deletions components/Products/ProductsShowAll.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ const productImage = (product) =>
const productVariables = { limit: 99 };
const { data: allProducts } = await useAsyncQuery(
FETCH_ALL_PRODUCTS_QUERY,
productVariables
productVariables,
);
const categoryVariables = { id: props.categoryId };
const { data: allCategoryProducts } = await useAsyncQuery(
GET_PRODUCTS_FROM_CATEGORY_QUERY,
categoryVariables
categoryVariables,
);
</script>
Expand Down
2 changes: 1 addition & 1 deletion components/Products/ProductsSingleProduct.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ watch(
dataValue.product?.variations?.nodes[0].databaseId;
}
},
{ immediate: true }
{ immediate: true },
);
/**
Expand Down
Loading

1 comment on commit 8303caf

@vercel
Copy link

@vercel vercel bot commented on 8303caf Jul 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.