development #1

Merged
Vitor_soares merged 20 commits from development into master 2023-02-09 17:48:40 +00:00
4 changed files with 44 additions and 0 deletions
Showing only changes of commit c8c8d5ab42 - Show all commits

View File

@ -354,6 +354,8 @@
.subscriberContainer .title {
font-size: 0;
line-height: 0;
margin: 0;
}
.subscriberContainer .title::after {
content: "Produto Indisponível";
@ -372,21 +374,29 @@
line-height: 19px;
color: #868686;
}
.subscriberContainer .form {
margin-bottom: 16px;
}
.subscriberContainer .form .content {
display: grid;
grid-template-areas: " nome email" " submit submit";
justify-content: inherit;
gap: 8px;
margin-top: 15px;
}
.subscriberContainer .form .content .inputName {
grid-area: nome;
margin-bottom: 0;
}
.subscriberContainer .form .content .inputEmail {
grid-area: email;
margin-bottom: 0;
}
.subscriberContainer .form .content .submit {
grid-area: submit;
width: 100%;
margin-top: 7px;
margin-bottom: 0;
}
.subscriberContainer .form .content .submit :global(.vtex-button) {
width: 100%;

View File

@ -1,3 +1,4 @@
@charset "UTF-8";
/*
0 - 600PX: Phone
600 - 900px: Table portrait
@ -13,6 +14,16 @@
.container--structure {
padding: 0 40px;
}
.container--structure::after {
content: "Você também pode gostar:";
display: block;
text-align: center;
font-weight: 400;
font-size: 24px;
line-height: 38px;
padding: 16px 0 32px 0;
color: #575757;
}
.contentContainer {
padding: 0 32px;
@ -38,6 +49,7 @@
}
.listContainer .listItemActive :global(.vtex-button) {
background-color: #fff;
width: 114px;
border: none;
}
.listContainer .listItemActive :global(.vtex-button__label) {

View File

@ -430,6 +430,8 @@ margin-top: 16px;
.title {
font-size: 0;
line-height: 0;
margin: 0;
&::after {
content: "Produto Indisponível";
@ -455,24 +457,31 @@ margin-top: 16px;
}
.form {
margin-bottom: 16px;
.content {
display: grid;
grid-template-areas: " nome email"
" submit submit";
justify-content: inherit;
gap: 8px;
margin-top: 15px;
.inputName {
grid-area: nome;
margin-bottom: 0;
}
.inputEmail {
grid-area: email;
margin-bottom: 0;
}
.submit {
grid-area: submit;
width: 100%;
margin-top: 7px;
margin-bottom: 0;
:global(.vtex-button) {
width: 100%;

View File

@ -1,5 +1,17 @@
.container--structure {
padding: 0 40px;
&::after {
content: "Você também pode gostar:";
display: block;
text-align: center;
font-weight: 400;
font-size: 24px;
line-height: 38px;
padding: 16px 0 32px 0;
color: $gray-100;
}
}
.contentContainer {
@ -34,6 +46,7 @@
.listItemActive {
:global(.vtex-button) {
background-color: $white;
width: 114px;
border: none;
}