Remove o agenciamagma-theme para evitar erros
This commit is contained in:
parent
c9a06914fb
commit
580c31e5a6
@ -15,7 +15,6 @@
|
|||||||
"postreleasy": "vtex publish --verbose"
|
"postreleasy": "vtex publish --verbose"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"agenciamagma.store-theme": "5.x",
|
|
||||||
"vtex.store": "2.x",
|
"vtex.store": "2.x",
|
||||||
"vtex.store-header": "2.x",
|
"vtex.store-header": "2.x",
|
||||||
"vtex.product-summary": "2.x",
|
"vtex.product-summary": "2.x",
|
||||||
|
@ -1,40 +1,52 @@
|
|||||||
import React, { ReactNode } from "react";
|
import React, { ReactNode } from "react";
|
||||||
import { useCssHandles } from "vtex.css-handles";
|
import { useCssHandles } from "vtex.css-handles";
|
||||||
|
import "./style.css";
|
||||||
|
|
||||||
const CSS_HANDLES = ["html"] as const;
|
const CSS_HANDLES = ["html"] as const;
|
||||||
|
|
||||||
type HtmlProps = {
|
type HtmlProps = {
|
||||||
children?: ReactNode,
|
children?: ReactNode;
|
||||||
/**
|
/**
|
||||||
* Qual tag Html que deseja que seja usar
|
* Qual tag Html que deseja que seja usar
|
||||||
*
|
*
|
||||||
* @default div
|
* @default div
|
||||||
*/
|
*/
|
||||||
tag?: keyof React.ReactHTML
|
tag?: keyof React.ReactHTML;
|
||||||
/**
|
/**
|
||||||
* Classes CSS extras que deseja adicionar.
|
* Classes CSS extras que deseja adicionar.
|
||||||
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
* Feito para uso de [classes do tachyons](https://tachyons.io/)
|
||||||
*/
|
*/
|
||||||
tachyonsClasses?: string
|
tachyonsClasses?: string;
|
||||||
/**
|
/**
|
||||||
* Se caso quiser usar esse componente
|
* Se caso quiser usar esse componente
|
||||||
* para adicinar um texto simples
|
* para adicinar um texto simples
|
||||||
*/
|
*/
|
||||||
text?: string
|
text?: string;
|
||||||
/**
|
/**
|
||||||
* Tag ID para
|
* Tag ID para
|
||||||
*/
|
*/
|
||||||
testId?: string
|
testId?: string;
|
||||||
}
|
};
|
||||||
|
|
||||||
export const Html = ({ children = null, tag = "div", text = "", tachyonsClasses: classes = "", testId }: HtmlProps) => {
|
export const Html = ({
|
||||||
|
children = null,
|
||||||
|
tag = "div",
|
||||||
|
text = "",
|
||||||
|
tachyonsClasses: classes = "",
|
||||||
|
testId,
|
||||||
|
}: HtmlProps) => {
|
||||||
const { handles } = useCssHandles(CSS_HANDLES);
|
const { handles } = useCssHandles(CSS_HANDLES);
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
className: `${handles.html} ${classes}`,
|
className: `${handles.html} ${classes}`,
|
||||||
"data-testid": testId
|
"data-testid": testId,
|
||||||
};
|
};
|
||||||
const Children = <>{children}{text}</>;
|
const Children = (
|
||||||
|
<>
|
||||||
|
{children}
|
||||||
|
{text}
|
||||||
|
</>
|
||||||
|
);
|
||||||
const Element = React.createElement(tag, props, Children);
|
const Element = React.createElement(tag, props, Children);
|
||||||
|
|
||||||
return <>{Element}</>;
|
return <>{Element}</>;
|
||||||
|
104
react/components/Html/style.css
Normal file
104
react/components/Html/style.css
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
[class*="vtex-store-components-3-x-productImageTag--main"] {
|
||||||
|
max-height: 900px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.html--pdp-breadcrumb {
|
||||||
|
margin: 0 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*buy-button*/
|
||||||
|
/* [class*="flexRowContent--btn-product"] button {
|
||||||
|
background-color: black;
|
||||||
|
border-color: black;
|
||||||
|
max-width: 526px;
|
||||||
|
width: 100%;
|
||||||
|
height: 49px;
|
||||||
|
display: flex;
|
||||||
|
border-radius: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="flexRowContent--btn-product"] button:hover {
|
||||||
|
background-color: rgb(41, 41, 41);
|
||||||
|
border-color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="flexRowContent--btn-product"] button span {
|
||||||
|
font-size: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="flexRowContent--btn-product"] button span::after {
|
||||||
|
content: "ADICIONAR À SACOLA";
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
} */
|
||||||
|
|
||||||
|
[class*="pix-container"] {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="pix_price-container"] {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-left: 20px;
|
||||||
|
color: gray;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="pix_discount-container"] {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Cep-link*/
|
||||||
|
|
||||||
|
[class*="vtex-address-form__postalCode-forgottenURL"] a {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-address-form__postalCode-forgottenURL"] a:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-address-form__postalCode-forgottenURL"] span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Description*/
|
||||||
|
[class*="vtex-tab-layout-0-x-listItem"] {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-tab-layout-0-x-listItem"] button {
|
||||||
|
color: gray;
|
||||||
|
text-transform: capitalize;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-tab-layout-0-x-listItem"] button:hover {
|
||||||
|
color: black;
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-tab-layout-0-x-listItemActive"] button {
|
||||||
|
color: black;
|
||||||
|
background-color: white;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="vtex-tab-layout-0-x-listItemActive"] button:hover {
|
||||||
|
background-color: white;
|
||||||
|
border-bottom: 4px solid black;
|
||||||
|
color: black;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user