Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cart.css
Original file line number Diff line number Diff line change
Expand Up @@ -422,15 +422,15 @@ body.showCart .container {
.listCart .quantity {
display: flex;
align-items: center;
gap: 8px;
gap: 3px;
}

.listCart .quantity span {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
width: 26px;
height: 26px;
border-radius: 50%;
background-color: #eee;
color: #555;
Expand All @@ -450,13 +450,13 @@ body.showCart .container {
background-color: transparent;
color: #eee;
cursor: default;
font-size: 16px;
font-size: 14px;
width: auto;
}

.listCart .item h2 {
color: #eee;
font-size: 16px;
font-size: 14px;
margin: 0;
}

Expand Down
5 changes: 2 additions & 3 deletions cart.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
x// DOM Elements
// DOM Elements
let listProductHTML = document.querySelector('.listProduct');
let listCartHTML = document.querySelector('.listCart');
let iconCart = document.querySelector('.icon-cart');
Expand Down Expand Up @@ -269,5 +269,4 @@ document.addEventListener('DOMContentLoaded', function() {
items.forEach((item, index) => {
item.style.animationDelay = `${index * 0.1}s`;
});
});

});