You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
908 B
SCSS

2 years ago
$small: 600px;
$medium: 960px;
.cart-container {
width: 100%;
height: 100%;
padding-top: 30vh;
display: flex;
flex-direction: row;
justify-content: center;
}
.cart-list-items {
padding-right: 12vh
}
.cart-item {
display: flex;
flex-direction: row;
margin-right: 10%;
height: 12vh;
width: 20vh;
padding: 10%;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-item-img {
padding-right: 20%;
}
img {
width: 100px;
border-radius: 10px;
}
.cart-payment-from {
height: 12vh;
padding: 4vh;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}