so the next code:
className={`
no-underline black db overflow-hidden
${css({
display: '-webkit-box',
'-webkit-line-clamp': 2,
'-webkit-box-orient': 'vertical',
[bpMinSM]: {
'-webkit-line-clamp': 1,
},
})}
`}
outputs to:
display: -webkit-box;
-webkit-line-clamp: 2px;
-webkit-box-orient: vertical;

Which is not correct for sure (because of px concatenated).
Am I doing something wrong?
so the next code:
outputs to:
Which is not correct for sure (because of
pxconcatenated).Am I doing something wrong?