postcss-calc icon indicating copy to clipboard operation
postcss-calc copied to clipboard

max-content not supported?

Open lsimichael opened this issue 4 years ago • 2 comments

This line does not compile, I think because it does not understand max-content keyword:

width: calc(max-content + (.5 * var(--global-button-padding-right, var(--global-button-padding-horizontal, 0px))));

lsimichael avatar Aug 07 '20 14:08 lsimichael

What is output?

alexander-akait avatar Aug 10 '20 12:08 alexander-akait

@lsimichael looks like you can't calc with an intrinsic unit and an extrinsic unit together (auto + 1rem, max-content * 2, etc)

Semigradsky avatar Sep 01 '20 11:09 Semigradsky