forked from M3-Academy/challenge-vtex-io
43 lines
789 B
CSS
43 lines
789 B
CSS
|
.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 {
|
||
|
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;
|
||
|
}
|