Entrega do Desafio #1

Merged
anacarolinaduartecavalcante merged 93 commits from feature/challenge-vtex-io into develop 2023-02-03 17:14:03 +00:00
2 changed files with 19 additions and 0 deletions
Showing only changes of commit 8f9edf916e - Show all commits

View File

@ -1,5 +1,6 @@
import React, { ReactNode } from "react";
import { useCssHandles } from "vtex.css-handles";
import "./styles.css"
const CSS_HANDLES = ["html"] as const;

View File

@ -0,0 +1,18 @@
/* 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%;
}