fix product image display and remove hover zoom

This commit is contained in:
Martin Filipovic Hinrichs 2026-06-15 13:41:01 +02:00
parent 71652af319
commit daf74f54da
2 changed files with 16 additions and 1 deletions

View file

@ -160,6 +160,7 @@ strong {
.icon {
color: #878787;
}
.icon:hover {
color: $sw-color-brand-primary;
}
@ -310,10 +311,18 @@ footer {
.product-detail-media {
.gallery-slider-single-image {
min-height: 800px !important;
@include media-breakpoint-up(md) {
img {
width: 100%;
}
}
@include media-breakpoint-up(lg) {
min-height: 800px !important;
}
}
}
.cms-section-sidebar,
.cms-section.alternate {
background-color: #f2effb;

View file

@ -0,0 +1,6 @@
{% sw_extends '@Storefront/storefront/element/cms-element-image-gallery.html.twig' %}
{% block element_image_gallery_inner %}
{% set zoom = false %}
{{ parent() }}
{% endblock %}