This commit is contained in:
2025-01-09 12:14:35 -08:00
parent baf728b22b
commit d0c66fdbfb
8 changed files with 147 additions and 67 deletions

View File

@@ -446,9 +446,22 @@ button[type="submit"].single_add_to_cart_button,
.f-white {
color: white;
&:hover {
color: white !important;
}
p {
color: white;
}
a {
color: white;
&:hover {
color: white !important;
}
}
}
.f-black {

View File

@@ -5,9 +5,9 @@
grid-template-rows: 1fr auto 1fr;
width: 100%;
.icon-img {
max-width: 50px;
height: 50px;
.icon-img img {
max-width: 37px;
height: auto;
}
}

View File

@@ -1,14 +1,48 @@
.product-carousel-slice-container {
.products {
.product-slide {
.product-image {
img {
width: 100%;
}
}
.title {
color: $blue;
}
.slick-prev:before,
.slick-next:before {
opacity: 0;
}
.slick-dots {
bottom: -3px;
left: -112px;
li {
button {
padding: 0;
&::before {
font-size: 12px;
color: white;
opacity: .9;
}
}
}
.slick-active button::before {
color: #507CFF;
}
}
.products {
.product-slide {
.g-sky-border {
// position: absolute;
}
.product-image {
img {
width: 100%;
background: white;
border-radius: 16px;
}
}
.title {
color: $blue;
}
}
}
}
}