- πΊπΈUnited States mscipioni
I was able to work around this by using string interpolation. Something like:
grid-column: ~"3 / 6"; /* Interpret as string */ grid-row: ~"2 / 4"; /* Interpret as string */
Will force LESS to see it as a string.
#slider_area #A { grid-area: 1 / 2 / 1 / 2; }
#slider_area #A { grid-area: 0.25; }
#slider_area { grid-template: 1fr 1fr 1fr / 1fr 32%; }
#slider_area { grid-template: 1fr 1fr 1fr 32%; }
PS:
Im not sure about the version. I am using Magento 2.3.4
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I was able to work around this by using string interpolation. Something like:
grid-column: ~"3 / 6"; /* Interpret as string */
grid-row: ~"2 / 4"; /* Interpret as string */
Will force LESS to see it as a string.