feat(main): adiciona estilo à thumbnail image active

This commit is contained in:
Andrea Matsunaga 2023-02-02 16:50:46 -03:00
parent 237742b407
commit 24d03fab83
2 changed files with 14 additions and 3 deletions

View File

@ -44,4 +44,8 @@
aspect-ratio: 1/1;
border-radius: 8px;
object-fit: cover;
}
.carouselGaleryThumbs .productImagesThumb.productImagesThumbActive .carouselThumbBorder {
border-radius: 8px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.33));
}

View File

@ -43,8 +43,15 @@
}
}
// @include mq(lg, max) {
// background-color: magenta;
// }
&.productImagesThumbActive {
.carouselThumbBorder {
border-radius: 8px;
background: linear-gradient(
0deg,
rgba(0, 0, 0, 0.33),
rgba(0, 0, 0, 0.33)
);
}
}
}
}