Merge pull request 'feat: newsletter finalizado' (#7) from feat/newsletter into master

Reviewed-on: #7
This commit is contained in:
ThiagoDutraSampaioLeite 2023-02-08 15:05:40 +00:00
commit f40f98834b
5 changed files with 118 additions and 10 deletions

View File

@ -10,6 +10,7 @@
"menu-item#personalization" "menu-item#personalization"
] ]
}, },
"menu-item#news": { "menu-item#news": {
"props": { "props": {
"id": "menu-item-news", "id": "menu-item-news",

View File

@ -1,11 +1,15 @@
.row--menu-row { /*
padding-right: 24px; 0 - 600PX: Phone
} 600 - 900px: Table portrait
900 - 1200px: Tablet landscape
.row--menu-row .rowContainer { [1200 - 1800] is where our nortal styles apply
align-items: flex-start; 1800px + : Big desktop
} */
/* Media Query M3 */
.row--payment-methods { /* Grid breakpoints */
padding-top: 16px; .footerLayout {
background-color: #000;
} }
.footerLayout :global(.vtex-store-components-3-x-container) {
margin: 0;
}

View File

@ -0,0 +1,57 @@
/*
0 - 600PX: Phone
600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.newsletterForm--container-newsletter {
display: flex;
width: 60% !important;
background-color: #000;
position: relative;
margin-bottom: 16px;
}
@media only screen and (max-width: 1023px) {
.newsletterForm--container-newsletter {
width: 100% !important;
}
}
.emailInputContainer {
border-bottom: 1px solid #929292;
}
.emailInputContainer :global(.vtex-input-prefix__group) {
border: none;
}
.emailInputContainer :global(.vtex-input-prefix__group) :global(.vtex-styleguide-9-x-input) {
background-color: transparent;
}
.formSubmitContainer {
height: 40px;
border-bottom: 3px solid #fff;
position: absolute;
top: 0;
right: 0;
}
.formSubmitContainer :global(.vtex-button) {
background-color: transparent;
border: none;
}
.formSubmitContainer :global(.vtex-button) :global(.vtex-button__label) {
font-weight: 700;
font-size: 14px;
line-height: 19px;
padding: 0 16px 13px 16px;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.defaultSuccessMessage {
color: #fff;
margin: 0 0 16px 0;
text-align: center;
}

View File

@ -0,0 +1,46 @@
.newsletterForm--container-newsletter {
display: flex;
width: 60% !important;
background-color: $color-black;
position: relative;
margin-bottom: 16px;
@include mq(md, max) {
width: 100% !important;
}
}
.emailInputContainer {
border-bottom: 1px solid $color-gray6;
:global(.vtex-input-prefix__group) {
border: none;
:global(.vtex-styleguide-9-x-input) {
background-color: transparent;
}
}
}
.formSubmitContainer {
height: 40px;
border-bottom: 3px solid $color-white;
position: absolute;
top: 0;
right: 0;
:global(.vtex-button) {
background-color: transparent;
border: none;
:global(.vtex-button__label) {
font-weight: 700;
font-size: 14px;
line-height: 19px;
padding: 0 16px 13px 16px;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
}
}
.defaultSuccessMessage {
color: $color-white;
margin: 0 0 16px 0;
text-align: center;
}