File: /mnt/data/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_cart.scss
/*============================
43. Cart
============================*/
@use "../utils/mixins" as *;
@use '../variables' as *;
.cart-item-wrap {
.cart-item-one {
padding: 24px;
border: 1px solid $gray-100;
border-radius: 5px;
box-shadow: $box-shadow;
.cart-title {
.btn {
display: flex;
align-items: center;
padding: 5px 12px;
font-size: 14px;
i {
font-size: 14px;
margin-right: 4px;
}
}
}
.cart-item-two {
padding: 16px;
border: 1px solid $gray-100;
border-radius: 5px;
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
img {
border-radius: 5px;
@include respond-below(sm) {
width: 100%;
margin-right: 0;
}
}
p {
display: flex;
align-items: center;
font-size: 14px;
i {
margin-right: 4px;
font-size: 14px;
}
}
.cart-content-one {
display: flex;
align-items: center;
justify-content: space-between;
.quantity-input {
width: 32px;
height: 32px;
padding: 0;
border: none;
background: $white;
text-align: center;
border-radius: 5px;
font-size: 14px;
}
.btn-cover {
.minus-btn, .add-btn {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
margin-right: 4px;
font-size: 16px;
font-weight: $font-weight-medium;
border: 1px solid $gray-100;
&:last-child {
margin-right: 0;
margin-left: 4px;
}
}
}
.remove-btn {
display: flex;
align-items: center;
border: 1px solid $danger;
color:$danger;
font-size: 13px;
font-weight: $font-weight-medium;
padding: 6px 10px;
i {
font-size: 13px;
margin-right: 4px;
}
&:hover {
background: $danger;
color: $white;
}
}
}
}
}
}