-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Labels
Description
LESS CODE:
@x: 0.6
@media screen and (max-width: 1735px*@x)
Does not compile into expected:
@media screen and (max-width: 1041px)
However into:
@media screen and (max-width: 1735px*0.6)
It's not a big deal, but it's inconstinent with declarations like:
width: 1735px*@x
This one works as expected:
width: 1041px
EDIT: With parenthess is calculation OK:
@x: 0.6
@media screen and (max-width: (1735px*@x))