forked from M3-Academy/challenge-vtex-io
19 lines
324 B
CSS
19 lines
324 B
CSS
|
/* Product Quantity and Add To Cart Button */
|
||
|
|
||
|
[class*="html--cart-content"] {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
column-gap: 10px;
|
||
|
margin-top: 8px;
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
[data-testid="product-quantity"]{
|
||
|
height: 49px;
|
||
|
}
|
||
|
|
||
|
[data-testid="add-to-cart-button"]{
|
||
|
width: 100%;
|
||
|
}
|