2023-01-29 03:33:15 +00:00
|
|
|
/*
|
|
|
|
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 */
|
2023-01-12 16:56:35 +00:00
|
|
|
.skuSelectorContainer--quickview .skuSelectorItemImage .frameAround, .skuSelectorContainer--quickview .skuSelectorItemImage .skuSelectorInternalBox {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container :global(.vtex-modal-layout-0-x-triggerContainer) {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 200ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container:hover :global(.vtex-modal-layout-0-x-triggerContainer) {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2023-02-06 15:15:14 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2023-01-12 16:56:35 +00:00
|
|
|
.container :global(.vtex-modal-layout-0-x-triggerContainer) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.nameContainer {
|
|
|
|
justify-content: start;
|
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.brandName {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #2E2E2E;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
text-align: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.imageContainer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image {
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
}
|
2023-01-29 03:33:15 +00:00
|
|
|
|
|
|
|
.nameContainer {
|
|
|
|
padding-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
.nameContainer .productNameContainer {
|
|
|
|
text-align: center;
|
|
|
|
}
|