feature/footer #16

Merged
SavioCarvalhoMoraes merged 5 commits from feature/footer into development 2023-01-19 15:02:48 +00:00
5 changed files with 47 additions and 22 deletions
Showing only changes of commit 65fa8478df - Show all commits

View File

@ -1,4 +1,6 @@
.endereco {
width: 234px;
height: 24px;
font-family: "Roboto";
font-style: normal;
font-weight: 400;
@ -7,7 +9,11 @@
text-transform: capitalize;
color: white;
margin: 0 0 0 0;
@media screen and (min-width: 2500px) {
width: 467px;
height: 47px;
font-size: 20px;
line-height: 23px;
}
}

View File

@ -19,11 +19,11 @@
}
}
img {
width: 44.92px;
height: 16px;
width: 28.66px;
height: 15.65px;
@media screen and (min-width: 2500px) {
width: 84.22px;
height: 30px;
width: 34.15px;
height: 23.87px;
}
}
}

View File

@ -2,14 +2,24 @@
display: flex;
flex-direction: row;
gap: 12px;
padding: 0 0 0 0;
}
.paymentsItem {
img {
width: 35px;
height: 20.2px;
@media screen and (min-width: 2500px) {
width: 70px;
height: 40.25px;
}
}
}
img {
width: 35px;
height: 20.2px;
}
.paymentsPci {
width: 54.61px;
height: 34px;
@media screen and (min-width: 2500px) {
width: 106px;
height: 66px;
}
}

View File

@ -2,23 +2,20 @@ import { Address } from "../../../components/Address/Address";
import { Payments } from "../../../components/Payments/Payments";
import { VtexPci } from "../../../components/Payments/Payments";
import { PoweredBy } from "../../../components/PoweredBy/PoweredBy";
import { DevelopedBy } from "../../../components/DevelopedBy/DevelopedBy";
const BottomFooter = () => {
return (
<div className="bottom_footer">
<ul className="bottom_footer_itens">
<li className="bottom_footer_item">
<Address></Address>
</li>
<li className="bottom_footer_item pagamentos">
<Payments></Payments>
<p>|</p>
<VtexPci></VtexPci>
</li>
<li className="bottom_footer_item">
<PoweredBy></PoweredBy>
</li>
</ul>
<Address></Address>
<div className="bottom_footer_item pagamentos">
<Payments></Payments>
<p>|</p>
<VtexPci></VtexPci>
</div>
<div className="bottom_footer_item creation">
<PoweredBy></PoweredBy>
<DevelopedBy></DevelopedBy>
</div>
</div>
);
};

View File

@ -1,12 +1,19 @@
.bottom_footer {
width: 100%;
display: flex;
flex-direction: row;
background: black;
margin: 0 auto;
padding: 20px 100px;
justify-content: space-between;
}
.bottom_footer_itens {
display: flex;
flex-direction: row;
align-items: center;
}
.pagamentos {
display: flex;
flex-direction: row;
@ -16,3 +23,8 @@
}
gap: 5px;
}
.creation {
display: flex;
flex-direction: row;
gap: 13px;
}