Merge branch 'detail_v3' of http://gitlab.t-win.kr/ifheone/shoptime into detail_v3

This commit is contained in:
2025-11-06 09:08:58 +09:00
2 changed files with 3 additions and 4 deletions

View File

@@ -137,7 +137,7 @@ const CartProduct = ({ cartInfo }) => {
// );
const optionTotal = 0;
const shippingTotal = items.reduce((sum, item) =>
sum + parseFloat(item.shippingCharge || 0), 0
sum + parseFloat((item.shippingCharge) * item.prodQty || 0), 0
);
return {

View File

@@ -4,12 +4,11 @@
.descriptionContainer {
position: relative;
top: -1px;
width: calc(100% - 5px);
margin-left: 5px;
max-width: none;
width: calc(100% - 5px);
height: 100%;
box-sizing: border-box;
color: rgba(234, 234, 234, 1);
max-width:1114px;
}
.titleWrapper {