forked from M3-Academy/challenge-vtex-io
52 lines
958 B
CSS
52 lines
958 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 */
|
|
.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;
|
|
}
|
|
|
|
@media screen and (max-width: 40em) {
|
|
.container :global(.vtex-modal-layout-0-x-triggerContainer) {
|
|
display: none;
|
|
}
|
|
}
|
|
.nameContainer {
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.brandName {
|
|
color: #2e2e2e;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
|
|
.priceContainer {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.imageContainer {
|
|
text-align: center;
|
|
}
|
|
|
|
.image {
|
|
border-radius: 0.25rem;
|
|
} |