Closed tonivet closed 3 years ago
When I write something like that in less file: grid-column: 1 / -1; in css file appears: grid-column: -1;
grid-column: 1 / -1;
grid-column: -1;
or when I write in less file: grid-template: repeat(2, 50px) / repeat(3, 1fr); it gives me error: "Operation on an invalid type".
grid-template: repeat(2, 50px) / repeat(3, 1fr);
Easy less recognize / as a division symbol, not as it is.
I had to add in settings.json "javascriptEnabled": false, although I don't used / in backticks.
"javascriptEnabled": false,
When I write something like that in less file:
grid-column: 1 / -1;
in css file appears:grid-column: -1;
or when I write in less file:
grid-template: repeat(2, 50px) / repeat(3, 1fr);
it gives me error: "Operation on an invalid type".Easy less recognize / as a division symbol, not as it is.
I had to add in settings.json
"javascriptEnabled": false,
although I don't used / in backticks.