wyyl/resources/beike/shop/default/cart.scss

101 lines
1.9 KiB
SCSS

@charset "UTF-8";
body.page-cart {
.cart-products-wrap {
.table {
tbody {
border-top: none;
td {
vertical-align: middle;
border-color: #f0f2f4;
}
}
thead {
background-color: #F8F9FA;
th {
border-bottom: none;
padding: 0.7rem 0.5rem;
box-shadow: none;
}
}
.p-image {
input {
flex: 0 0 1;
}
img {
max-width: 80px;
margin-left: 10px;
}
}
.quantity-wrap {
width: 80px;
height: 37px;
display: flex;
align-content: space-between;
border: 1px solid #ced4da;
input {
border: none;
padding: 0.5rem;
}
> .right {
display: flex;
flex-direction: column;
// align-items: center;
border-left: 1px solid #ced4da;
i {
flex: 1;
width: 20px;
height: 17px;
text-align: center;
cursor: pointer;
&:last-of-type {
border-top: 1px solid #ced4da;
}
&:hover {
background-color: #eee;
}
}
}
}
}
}
.total-wrap {
border: none;
background-color: #F8F9FA;
.card-header {
padding-top: 1rem;
border-bottom: none;
background-color: transparent;
}
.list-group {
li {
background-color: transparent;
padding: 0.7rem 0;
border-color: #EEEEEE;
&:not(.d-grid) {
display: flex;
align-items: center; // flex-start | center
justify-content: space-between; // flex-end | center | space-between
}
.total-price {
color: #222222;
font-size: 1.2rem;
font-weight: bold;
}
}
}
}
}