Skip to content

Commit

Permalink
Updated the CartPage CSS to make the behaviour of the Update butt…
Browse files Browse the repository at this point in the history
…on align with other "buttons" on hover
  • Loading branch information
SmithPlatts committed Feb 13, 2024
1 parent cacd472 commit fe8e7a0
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down
6 changes: 6 additions & 0 deletions src/WebApp/Components/Pages/Cart/CartPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
gap: 0.5rem;
}

.cart-items .cart-item .catalog-item-quantity form button:hover {
cursor: pointer;
background: #000;
color: #FFF;
}

.cart-items .cart-item .catalog-item-quantity input {
max-width: 3rem;
padding: 1rem 0.75rem;
Expand Down

0 comments on commit fe8e7a0

Please sign in to comment.