You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem appeared for me with the latest CodeKit but this has been reproduced using most recent version of less.js
Exemple : LESS
@fontRem = 17rem;
.whatever{
font-size:25/@fontRem;
} CSS OUTPUT
.whatever{font-size:1,47058824}
(unit is absent) Used to be
.whatever{font-size:1,47058824rem}
This only fails with the / operator and only if left unit is absent.
30rem/15rem does output 2rem
Strict unit is set to default (off)
The text was updated successfully, but these errors were encountered:
Problem appeared for me with the latest CodeKit but this has been reproduced using most recent version of less.js
Exemple :
LESS
@fontRem = 17rem;
.whatever{
font-size:25/@fontRem;
}
CSS OUTPUT
.whatever{font-size:1,47058824}
(unit is absent)
Used to be
.whatever{font-size:1,47058824rem}
This only fails with the / operator and only if left unit is absent.
30rem/15rem does output 2rem
Strict unit is set to default (off)
The text was updated successfully, but these errors were encountered: