PostCSS Calc doesn't understand infinity #15936
-
The postcss-calc library does not (yet) understand the The .rounded-full {
border-radius: calc(infinity * 1px);
} I believe the old value was @utility rounded-full {
border-radius: 9999px;
} However when inspecting the compiled Tailwind CSS the .rounded-full {
border-radius: calc(infinity * 1px);
}
.rounded-full {
border-radius: 9999px;
} With my utility being later in the CSS order it does take specificity however the PostCSS Calc still cant parse the file because Any one got an idea on how to fix this? I tried changing every |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You could either:
|
Beta Was this translation helpful? Give feedback.
-
For anyone wondering, this has been fixed from the |
Beta Was this translation helpful? Give feedback.
For anyone wondering, this has been fixed from the
postcss-calc
package itself.postcss/postcss-calc#210 (comment)