[FIX] website_sale_product_library: avoid Sass mixed units in iframe width

This commit is contained in:
snt 2026-03-29 18:36:21 +02:00
parent e799ff33b5
commit 0b87a45c6d

View file

@ -18,7 +18,8 @@
left: 50%;
top: 38%;
transform: translate(-50%, -50%);
width: min(86%, 320px);
width: 86%;
max-width: 320px;
z-index: 4;
pointer-events: auto;
}
@ -34,6 +35,7 @@
@media (max-width: 991.98px) {
.o_multimedia_image_player {
width: min(92%, 300px);
width: 92%;
max-width: 300px;
}
}