Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/components/Footer/Navegation/navegation.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
@import "../../../styles/global.scss";

.ContactData__Item {

h6 {
font-size: 22px;
}

ul {
li {
list-style: none;

a {
color: $white;
font-size: 18px;
}
}
}
Expand All @@ -18,4 +24,7 @@
font-size: 18px;
}
}
h6 {
font-size: inherit;
}
}
13 changes: 7 additions & 6 deletions src/components/Footer/Subscription/subscription.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Link } from "gatsby"
import React from "react"
import { useFooter } from "../../../hooks"
import "./subscription.scss"
Expand All @@ -9,15 +10,15 @@ export default function Subscription() {
return (
<div className="ContactData__Item contactData-container">
<h6 className="titleSubscription">{dataSubscription?.title}</h6>
<form>
<div>
<div className="ContactData__Form d-flex flex-md-column justify-content-between">
<button className="col-5" type="submit">
Subscribe
<button className="col-5">
<Link to="/recibe-nuestra-newsletter" >Subscribe</Link>
</button>
</div>
</form>
<button className="col-5 contactData-mobile_button" type="submit">
{dataSubscription?.title}
</div>
<button className="col-5 contactData-mobile_button">
<Link to="/recibe-nuestra-newsletter" >{dataSubscription?.title}</Link>
</button>
</div>
)
Expand Down
9 changes: 8 additions & 1 deletion src/components/Footer/Subscription/subscription.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
box-shadow: 0px 2px 10px rgba(63, 107, 232, 0.5);
padding: 5px !important;
width: 30%;
a {
color: inherit;
}
}
}
}
Expand Down Expand Up @@ -76,9 +79,13 @@
display: none;
}
.contactData-mobile_button{
width: 70%;
width: auto;
max-width: 100%;
@include primaryBtn;
margin-top: 3em;
a {
color: inherit;
}
}
.contactData-container{
display: flex;
Expand Down