Tu Nguyen @mrtuvn@github.com wrote on 13 May 2022 at https://github.com/wikimedia/less.php/issues/78:error evaluating function `clamp` PHP Notice: Object of class Less_Tree_Dimension could not be converted to int in /var/www/html/vendor/wikimedia/less.php/lib/Less/Functions.php on line 33
jamie-selesti wrote on 11 Oct 2022:Same here, we use this library as its bundled with Magento's official framework
Gappa wrote on 28 Nov 2022:One way to get it working is to escape the whole function:
- property: ~"clamp(10px, 5vw, 100px)";
- property: ~"clamp(var(--css-variable), 5vw, 100px)";
- property: ~"clamp(@{lessVariable}, 5vw, 100px)";