feat: Adicionando estilo no Cep

This commit is contained in:
Savio Carvalho Moraes 2023-02-08 18:20:58 -03:00
parent 0abdeaba4f
commit e73bc62040
4 changed files with 54 additions and 6 deletions

View File

@ -0,0 +1,13 @@
/*
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 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
/* Grid breakpoints */
.input::placeholder {
content: "Digite seu CEP";
}

View File

@ -113,8 +113,12 @@
}
.shippingContainer :global(.vtex-button) :global(.vtex-button__label)::after {
content: "Ok";
color: white;
font-size: 10px;
font-family: "Open Sans";
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #ffffff;
}
.shippingContainer :global(.vtex-input) :global(.vtex-input__label) {
@ -138,8 +142,19 @@
}
.shippingContainer :global(.vtex-button) {
position: relative;
right: 49px;
right: 127px;
top: 27px;
width: 49px;
height: 49px;
}
.shippingContainer :global(.vtex-address-form__postalCode) {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.shippingContainer :global(.vtex-address-form__postalCode-forgottenURL) {
position: relative;
left: 70px;
top: 8px;
}

View File

@ -0,0 +1,5 @@
.input {
&::placeholder {
content: "Digite seu CEP";
}
}

View File

@ -107,8 +107,12 @@
font-size: 0;
&::after {
content: "Ok";
color: white;
font-size: 10px;
font-family: "Open Sans";
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #ffffff;
}
}
}
@ -138,9 +142,20 @@
:global(.vtex-button) {
position: relative;
right: 49px;
right: 127px;
top: 27px;
width: 49px;
height: 49px;
}
:global(.vtex-address-form__postalCode) {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
:global(.vtex-address-form__postalCode-forgottenURL) {
position: relative;
left: 70px;
top: 8px;
}
}