css
/* высота изображений Woo */
@media (min-width: 768px)
{
/* высота картинок архив десктоп */
.imagewrapper
{
display: flex;
justify-content: center;
align-items: center;
aspect-ratio: 1 / 1;
height: 100%;
background: white;
}
.imagewrapper img
{
max-height: 86%;
max-width: 86%;
width: auto !important;
}
/* высота картинок стр. товара */
.woocommerce div.product div.images .woocommerce-product-gallery__image img
{
aspect-ratio: 1 / 1;
height: 100%;
object-fit: contain;
padding: 4vh;
}
/* галерея картинок стр. товара */
.woocommerce div.product div.images .flex-control-thumbs li img
{
aspect-ratio: 1 / 1;
height: 100%;
object-fit: contain;
}
}
/* мобильная версия */
@media (max-width: 768px)
{/* высота картинок архив */
.imagewrapper
{
display: flex;
justify-content: center;
align-items: center;
aspect-ratio: 1 / 1;
height: 100%;
background: white;
}
.imagewrapper img
{
max-height: 85%;
max-width: 85%;
width: auto !important;
}
/* высота картинок стр. товара */
.woocommerce div.product div.images .woocommerce-product-gallery__image img
{
aspect-ratio: 1 / 1;
height: 100%;
object-fit: contain;
padding: 2vh;
}
/* галерея картинок в товаре */
.woocommerce div.product div.images .flex-control-thumbs li img
{
aspect-ratio: 1 / 1;
height: 100%;
object-fit: contain;
}
}
/* Закр. высота изображений Woo */