21 lines
334 B
SCSS
Vendored
21 lines
334 B
SCSS
Vendored
.cart-item {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 2em;
|
|
font-size: 0.8em;
|
|
&:nth-child(2n+1) {
|
|
background-color: #f0f0b1;
|
|
}
|
|
}
|
|
.product-image {
|
|
height: 10rem;
|
|
}
|
|
.name-price-container {
|
|
& > * {
|
|
margin: 0.2em 0px;
|
|
}
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|