Skip to content

Commit

Permalink
count btn updated
Browse files Browse the repository at this point in the history
  • Loading branch information
WednesdaySP committed Oct 8, 2024
1 parent 80402b3 commit 74afa6d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

"liveServer.settings.port": 5502
"liveServer.settings.port": 5503
}
22 changes: 16 additions & 6 deletions Html-files/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,25 +220,35 @@
}

.decrease-quantity {
padding-inline: 10px;
background: #1454f7;
padding-inline: 12px;
background: #a52a2a;
border: none;
border-radius: 2px;
font-size: 20px;
font-weight: 500;
color: #cbf7e3;
color: white;
margin: 5px;
}
.decrease-quantity:hover{
background-color: white;
color: #a52a2a;
}

.increase-quantity {
padding-inline: 10px;
background: #1454f7;
padding-inline: 12px;
background: #a52a2a;
border: none;
border-radius: 2px;
font-size: 20px;
font-weight: 500;
color: #cbf7e3;
color: white;
margin: 5px;
}

.increase-quantity:hover{
background-color: white;
color:#a52a2a;
}
#cart-total {
background: #a52a2a;
padding: 3px 5px;
Expand Down

0 comments on commit 74afa6d

Please sign in to comment.