Entrega do Desafio #1

Merged
anacarolinaduartecavalcante merged 93 commits from feature/challenge-vtex-io into develop 2023-02-03 17:14:03 +00:00
4 changed files with 119 additions and 104 deletions
Showing only changes of commit 8eb6eb3abd - Show all commits

View File

@ -1,98 +1,34 @@
.flexRowContent--menu-link, /*
.flexRowContent--main-header { 0 - 600PX: Phone
padding: 0 0.5rem; 600 - 900px: Table portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our nortal styles apply
1800px + : Big desktop
*/
/* Media Query M3 */
/* Grid breakpoints */
.flexRowContent {
padding: 0;
margin: 0;
column-gap: 32px;
} }
@media screen and (min-width: 40em) { .stretchChildrenWidth {
.flexRowContent--menu-link, padding: 0;
.flexRowContent--main-header { }
padding: 0 1rem; @media (max-width: 1920px) and (min-width: 1024px) {
.stretchChildrenWidth {
width: 100% !important;
} }
} }
@media screen and (min-width: 80rem) { .flexCol--stack-layout-content {
.flexRowContent--menu-link, width: 100% !important;
.flexRowContent--main-header {
padding: 0 0.25rem;
}
} }
.flexRowContent--menu-link { @media (max-width: 1920px) and (min-width: 1024px) {
background-color: #03044e; .flexRowContent--product-main-content {
color: #fff; display: grid;
grid-template-columns: 48.819% 48.819%;
} }
.flexRowContent--main-header {
background-color: #f0f0f0;
}
.flexRowContent--main-header-mobile {
align-items: center;
padding: 0.625rem 0.5rem;
background-color: #f0f0f0;
}
.flexRowContent--menu-link :global(.vtex-menu-2-x-styledLink) {
color: #ffffff;
font-size: 14px;
}
.flexRowContent--main-header :global(.vtex-menu-2-x-styledLink) {
color: #727273;
font-size: 14px;
}
.flexRow--deals {
background-color: #0F3E99;
padding: 14px 0px;
}
.flexRow--deals .stretchChildrenWidth {
align-items: center;
}
.flexRow--deals .flexCol {
align-items: center;
margin-bottom: 5px;
padding-top: 5px;
}
.flexCol--filterCol {
max-width: 500px;
min-width: 230px;
}
.flexCol--productCountCol {
align-items: flex-start;
}
.flexCol--orderByCol {
align-items: flex-end;
}
.flexCol--orderByMobileCol {
width: 42%;
}
.flexCol--filterMobileCol {
width: 38%;
}
.flexRow--quickviewMainRow {
display: flex;
max-height: 100%;
}
.flexColChild--quickviewDetails:first-child {
overflow-y: auto;
height: 66% !important;
overflow-x: hidden;
}
.flexColChild--quickviewDetails:last-child {
height: 34% !important;
}
.flexRow--addToCartRow {
padding-bottom: 1rem;
} }

View File

@ -7,6 +7,17 @@
*/ */
/* Media Query M3 */ /* Media Query M3 */
/* Grid breakpoints */ /* Grid breakpoints */
.container {
width: 100%;
padding: 0;
margin: auto;
}
@media (max-width: 1920px) and (min-width: 1024px) {
.container {
padding: 0 40px;
}
}
.carouselGaleryThumbs { .carouselGaleryThumbs {
margin-top: 16px; margin-top: 16px;
} }
@ -25,8 +36,8 @@
} }
.carouselGaleryCursor { .carouselGaleryCursor {
margin: 0; margin: 0 !important;
width: 100%; width: auto;
padding: 0; padding: 0;
} }
@ -34,9 +45,27 @@
display: none; display: none;
} }
@media (max-width: 1920px) and (min-width: 1024px) {
.productImagesGallerySwiperContainer {
width: 100%;
margin-left: 0;
margin-right: 0;
}
}
.productImageTag--main { .productImageTag--main {
width: 664px;
object-fit: unset !important; object-fit: unset !important;
}
@media (max-width: 1920px) and (min-width: 1024px) {
.productImageTag--main {
max-height: 664px !important; max-height: 664px !important;
height: 664px !important;
}
}
@media (max-width: 1920px) and (min-width: 1024px) {
.productVideo,
.videoContainer {
height: 664px; height: 664px;
} }
}

View File

@ -0,0 +1,23 @@
.flexRowContent {
padding: 0;
margin: 0;
column-gap: 32px;
}
.stretchChildrenWidth {
padding: 0;
@media (max-width: 1920px) and (min-width: 1024px) {
width: 100% !important;
}
}
.flexCol--stack-layout-content {
width: 100% !important;
}
.flexRowContent--product-main-content {
@media (max-width: 1920px) and (min-width: 1024px) {
display: grid;
grid-template-columns: 48.819% 48.819%;
}
}

View File

@ -1,5 +1,14 @@
//product-image //product-image
.container {
width: 100%;
padding: 0;
margin: auto;
@media (max-width: 1920px) and (min-width: 1024px) {
padding: 0 40px;
}
}
.carouselGaleryThumbs { .carouselGaleryThumbs {
margin-top: 16px; margin-top: 16px;
.productImagesThumb { .productImagesThumb {
@ -17,9 +26,11 @@
} }
} }
} }
.carouselGaleryCursor { .carouselGaleryCursor {
margin: 0; margin: 0 !important;
width: 100%; width: auto;
padding: 0; padding: 0;
} }
@ -27,9 +38,25 @@
display: none; display: none;
} }
.productImagesGallerySwiperContainer {
@media (max-width: 1920px) and (min-width: 1024px) {
width: 100%;
margin-left: 0;
margin-right: 0;
}
}
.productImageTag--main { .productImageTag--main {
width: 664px;
object-fit: unset !important; object-fit: unset !important;
@media (max-width: 1920px) and (min-width: 1024px) {
max-height: 664px !important; max-height: 664px !important;
height: 664px !important;
}
}
.productVideo,
.videoContainer {
@media (max-width: 1920px) and (min-width: 1024px) {
height: 664px; height: 664px;
} }
}