+
Dúvidas
diff --git a/src/components/Footer/FooterTop/footerTop.module.scss b/src/components/Footer/FooterTop/footerTop.module.scss
index 1feb4e4..484b9fb 100644
--- a/src/components/Footer/FooterTop/footerTop.module.scss
+++ b/src/components/Footer/FooterTop/footerTop.module.scss
@@ -4,6 +4,10 @@
padding: 50px 100px;
+ .wrapperFooterTop {
+ width: 14.3518%;
+ }
+
div h4 {
font-weight: 500;
font-size: 14px;
@@ -20,7 +24,6 @@
font-weight: 400;
font-size: 12px;
line-height: 14px;
- text-transform: capitalize;
margin-top: 12px;
color: var(--black-100);
@@ -31,6 +34,7 @@
}
.containerSupportClient {
+ width: 14.3518%;
.supportClient {
display: flex;
flex-direction: column;
@@ -112,6 +116,11 @@
flex-direction: column;
gap: 12px;
+ .wrapperFooterTop,
+ .containerSupportClient {
+ width: 100%;
+ }
+
div h4 {
display: flex;
align-items: center;
diff --git a/src/schema/FormSchema.ts b/src/schema/FormSchema.ts
index 81427fd..49b9937 100644
--- a/src/schema/FormSchema.ts
+++ b/src/schema/FormSchema.ts
@@ -48,6 +48,6 @@ export default Yup.object().shape({
.required("*Campo obrigatório")
.test("phone", "*Telefone Inválido", (phone) => convertPhone(phone!)),
instagram: Yup.string()
- .matches(/@/, "@ é obrigatório")
- .min(3, "Nome de usuario muito curto"),
+ .matches(/^@/, "@ no início é obrigatória")
+ .min(4, "Nome de usuario muito curto"),
});