diff --git a/react/components/Html/style.css b/react/components/Html/style.css index f131621..9a744dd 100644 --- a/react/components/Html/style.css +++ b/react/components/Html/style.css @@ -74,7 +74,7 @@ } [class*="vtex-tab-layout-0-x-listItem"] button { - color: gray; + color: #BFBFBF; text-transform: capitalize; font-family: 'Open Sans'; font-style: normal; diff --git a/styles/css/vtex.slider-layout.css b/styles/css/vtex.slider-layout.css index a42c32e..4a6ae45 100644 --- a/styles/css/vtex.slider-layout.css +++ b/styles/css/vtex.slider-layout.css @@ -19,6 +19,4 @@ .paginationDot--isActive { background-color: white; border: 1px solid black; - width: 17px; - height: 17px; } \ No newline at end of file diff --git a/styles/css/vtex.store-components.css b/styles/css/vtex.store-components.css index 1ef7760..bbf7bf1 100644 --- a/styles/css/vtex.store-components.css +++ b/styles/css/vtex.store-components.css @@ -182,11 +182,19 @@ .shippingTable .shippingTableHead { display: contents; } +.shippingTable .shippingTableHead .shippingTableRow { + text-align: left; + text-transform: uppercase; +} +.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryName, +.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryEstimate, +.shippingTable .shippingTableHead .shippingTableRow .shippingTableHeadDeliveryPrice { + font-weight: 400; +} .shippingTable .shippingTableCell { padding: 7px 0; -} -.shippingTable .shippingTableRow { - text-align: left; + font-family: "Open Sans"; + color: #afafaf; } .shippingTable .shippingTableRadioBtn { display: none; @@ -265,4 +273,17 @@ .newsletter .inputGroup .buttonContainer :global(.vtex-button):hover { background-color: black; border-bottom: 4px solid white; +} + +.discountInsideContainer, +.installmentsPrice { + display: none; +} + +.sellingPriceLabel { + display: none; +} + +.sellingPrice { + font-weight: bolder; } \ No newline at end of file diff --git a/styles/css/vtex.tab-layout.css b/styles/css/vtex.tab-layout.css index a92d01a..06c4b2f 100644 --- a/styles/css/vtex.tab-layout.css +++ b/styles/css/vtex.tab-layout.css @@ -17,6 +17,7 @@ @media screen and (max-width: 1024px) { .listContainer { flex-direction: column; + border-top: 1px solid #b9b9b9; } } @@ -27,5 +28,6 @@ @media screen and (max-width: 1024px) { .contentItem { flex-direction: column; + padding: 16px 40px; } } \ No newline at end of file diff --git a/styles/sass/pages/product/vtex.slider-layout.scss b/styles/sass/pages/product/vtex.slider-layout.scss index c7a75f9..9163385 100644 --- a/styles/sass/pages/product/vtex.slider-layout.scss +++ b/styles/sass/pages/product/vtex.slider-layout.scss @@ -10,6 +10,4 @@ .paginationDot--isActive { background-color: white; border: 1px solid black; - width: 17px; - height: 17px; } diff --git a/styles/sass/pages/product/vtex.store-components.scss b/styles/sass/pages/product/vtex.store-components.scss index b5b9835..c0b4f83 100644 --- a/styles/sass/pages/product/vtex.store-components.scss +++ b/styles/sass/pages/product/vtex.store-components.scss @@ -203,16 +203,26 @@ .shippingTable { border: none; + .shippingTableHead { display: contents; + + .shippingTableRow { + text-align: left; + text-transform: uppercase; + + .shippingTableHeadDeliveryName, + .shippingTableHeadDeliveryEstimate, + .shippingTableHeadDeliveryPrice { + font-weight: 400; + } + } } .shippingTableCell { padding: 7px 0; - } - - .shippingTableRow { - text-align: left; + font-family: "Open Sans"; + color: #afafaf; } .shippingTableRadioBtn { @@ -225,6 +235,7 @@ margin-right: 16px; width: 50%; } + .productDescriptionContainer { width: 50%; margin-left: 16px; @@ -306,15 +317,15 @@ } } -// .discountInsideContainer, -// .installmentsPrice { -// display: none; -// } +.discountInsideContainer, +.installmentsPrice { + display: none; +} -// .sellingPriceLabel { -// display: none; -// } +.sellingPriceLabel { + display: none; +} -// .sellingPrice { -// font-weight: bolder; -// } +.sellingPrice { + font-weight: bolder; +} diff --git a/styles/sass/pages/product/vtex.tab-layout.scss b/styles/sass/pages/product/vtex.tab-layout.scss index bc2e8cb..d559d07 100644 --- a/styles/sass/pages/product/vtex.tab-layout.scss +++ b/styles/sass/pages/product/vtex.tab-layout.scss @@ -7,6 +7,7 @@ @media screen and (max-width: 1024px) { flex-direction: column; + border-top: 1px solid #b9b9b9; } } @@ -16,5 +17,6 @@ @media screen and (max-width: 1024px) { flex-direction: column; + padding: 16px 40px; } }