31 lines
667 B
CSS
31 lines
667 B
CSS
/*
|
|
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 */
|
|
.flexRow--container-product-main {
|
|
padding: 0 40px;
|
|
}
|
|
.flexRow--container-product-main .flexRowContent--container-product-main {
|
|
display: grid;
|
|
grid-template-columns: 48.824% 1fr;
|
|
grid-column-gap: 32px;
|
|
}
|
|
.flexRow--container-product-main .flexRowContent--container-product-main .stretchChildrenWidth {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.swiper-wrapper .swiper-slide-active {
|
|
width: 100%;
|
|
}
|
|
.swiper-wrapper .swiper-slide {
|
|
width: 100%;
|
|
}
|
|
|
|
.flexRowContent {
|
|
margin: 0;
|
|
} |