Skip to content

Commit

Permalink
feat: xyz
Browse files Browse the repository at this point in the history
  • Loading branch information
floyyd6 committed Jun 13, 2023
1 parent 962edd2 commit f38321d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/AddToCart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,20 @@ export class AddToCart extends LitElement {
padding: var(--btn-padding);
outline: none;
border: none;
font-size: var(--font-size);
margin: var(--margin-x);
align-items: center;
cursor: pointer;
display: inline-flex;
-webkit-tap-highlight-color: transparent;
}
button {
background: none;
outline: none;
border:none;
cursor: pointer;
font-size: var(--font-size);
-webkit-tap-highlight-color: transparent;
}
`];

Expand Down
3 changes: 2 additions & 1 deletion src/Cart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ export class Cart extends LitElement {
border-radius: var(--br-medium);
color:var(--text-light);
position: absolute;
right: 0px;
right: 1rem;
top: 5rem;
-webkit-tap-highlight-color: transparent;
}
.product-wrapper {
Expand Down
4 changes: 3 additions & 1 deletion src/CartToggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ export class CartToggle extends LitElement {
padding: var(--btn-padding);
outline: none;
border: none;
font-size: var(--font-size);
color: var(--text-dark);
margin: var(--margin-x);
display: flex;
align-items: center;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
button {
background: none;
outline: none;
border:none;
cursor: pointer;
font-size: var(--font-size);
-webkit-tap-highlight-color: transparent;
}
div {
Expand Down
4 changes: 3 additions & 1 deletion src/CheckoutButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,21 @@ export class CheckoutButton extends LitElement {
padding: var(--btn-padding);
outline: none;
border: none;
font-size: var(--font-size);
color: var(--text-dark);
margin: var(--margin-x);
display: flex;
align-items: center;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
button {
background: none;
outline: none;
border:none;
cursor: pointer;
font-size: var(--font-size);
-webkit-tap-highlight-color: transparent;
}
`];

Expand Down

0 comments on commit f38321d

Please sign in to comment.