diff --git a/cart.css b/cart.css index 16d3876..362da26 100644 --- a/cart.css +++ b/cart.css @@ -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; @@ -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; } diff --git a/cart.js b/cart.js index dcd7956..65f3000 100644 --- a/cart.js +++ b/cart.js @@ -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'); @@ -269,5 +269,4 @@ document.addEventListener('DOMContentLoaded', function() { items.forEach((item, index) => { item.style.animationDelay = `${index * 0.1}s`; }); -}); - +}); \ No newline at end of file