feat(css): Adiciona css das imagens do header

This commit is contained in:
amanda almeida 2022-12-11 19:04:23 -03:00
parent 4ccd12f42f
commit f68495d3ba
2 changed files with 20 additions and 21 deletions

View File

@ -10,12 +10,9 @@ export default class Header {
await this.selectors(); await this.selectors();
this.progressBarHtml(); this.progressBarHtml();
await this.progressBarSelection(); await this.progressBarSelection();
} }
async selectors() { async selectors() {
this.header = waitElement(".headerCheckout");
this.progressBar = await waitElement("#progressBar"); this.progressBar = await waitElement("#progressBar");
} }

View File

@ -2,50 +2,52 @@
.headerCheckout { .headerCheckout {
.container { .container {
width: auto !important; width: auto !important;
padding: 30px 131px; border-bottom: 1px solid $color-black;
} }
&__wrapper { &__wrapper {
padding: 30px 0;
margin: 0 auto;
width: 80%;
height: 30px;
align-items: center; align-items: center;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
&__logo { &__logo {
img { width: 100%;
height: 52px; max-width: 15.3%;
img {
width: 100%;
height: 37px;
} }
} }
&__safeBuy { &__safeBuy {
display: flex; display: flex;
gap: 8px;
width: 100%; width: 100%;
max-width: 119px; max-width: 11.7%;
img {
width: 10%;
height: 15px;
}
span { span {
align-items: center;
display: flex;
text-transform: uppercase; text-transform: uppercase;
font-family: $font-family; font-family: $font-family;
font-style: normal;
font-weight: normal;
font-size: 12px; font-size: 12px;
line-height: 14px; line-height: 16px;
color: $color-gray; color: $color-black-400;
} }
i {
margin-right: 8px;
}
} }
.progress-bar { .progress-bar {
display: flex;
justify-content: center;
width: 100%;
p { p {
margin: 0; margin: 0;
padding: 0; padding: 0;