forked from M3-Academy/challenge-vtex-io
refactor: ajusta css breadcrumb 1440px e 1024px
This commit is contained in:
parent
d62357765c
commit
5afc2e1518
@ -1,7 +1,6 @@
|
|||||||
[class*="html--pdp-breadcrumb"] {
|
[class*="html--pdp-breadcrumb"] {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 0 40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[class*="html--selling-price"] {
|
[class*="html--selling-price"] {
|
||||||
@ -63,6 +62,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
|
[class*="html--pdp-breadcrumb"] {
|
||||||
|
padding: 0 40px;
|
||||||
|
}
|
||||||
|
|
||||||
[class*="html--product-quantity"] {
|
[class*="html--product-quantity"] {
|
||||||
width: 149.91px;
|
width: 149.91px;
|
||||||
}
|
}
|
||||||
|
13
styles/css/vtex.add-to-cart-button.css
Normal file
13
styles/css/vtex.add-to-cart-button.css
Normal 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%27");
|
||||||
|
/* Grid breakpoints */
|
||||||
|
.buttonText--addToCart {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
@ -10,8 +10,7 @@
|
|||||||
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap%27");
|
||||||
/* Grid breakpoints */
|
/* Grid breakpoints */
|
||||||
.container {
|
.container {
|
||||||
width: 100%;
|
width: 94.445%;
|
||||||
max-width: 1920px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.termArrow,
|
.termArrow,
|
||||||
@ -32,6 +31,7 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 17%;
|
top: 17%;
|
||||||
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.link--1 {
|
.link--1 {
|
||||||
@ -59,3 +59,8 @@
|
|||||||
max-width: 1840px;
|
max-width: 1840px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
@ -20,3 +20,8 @@
|
|||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.heading-level-1 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
@ -161,6 +161,10 @@
|
|||||||
height: 49px;
|
height: 49px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shippingContainer :global(.vtex-address-form-4-x-input) {
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.shippingContainer :global(.vtex-button) {
|
.shippingContainer :global(.vtex-button) {
|
||||||
width: 49px;
|
width: 49px;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
|
3
styles/sass/pages/product/vtex.add-to-cart-button.scss
Normal file
3
styles/sass/pages/product/vtex.add-to-cart-button.scss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.buttonText--addToCart {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
@ -1,6 +1,5 @@
|
|||||||
.container {
|
.container {
|
||||||
width: 100%;
|
width: 94.445%;
|
||||||
max-width: 1920px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.termArrow,
|
.termArrow,
|
||||||
@ -21,6 +20,7 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 17%;
|
top: 17%;
|
||||||
|
left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.link--1 {
|
.link--1 {
|
||||||
@ -48,3 +48,9 @@
|
|||||||
max-width: 1840px;
|
max-width: 1840px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -10,3 +10,9 @@
|
|||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.heading-level-1 {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -160,6 +160,10 @@
|
|||||||
height: 49px;
|
height: 49px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shippingContainer :global(.vtex-address-form-4-x-input) {
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.shippingContainer :global(.vtex-button) {
|
.shippingContainer :global(.vtex-button) {
|
||||||
width: 49px;
|
width: 49px;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
|
Loading…
Reference in New Issue
Block a user