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
A class that uses css variables as arbitrary values like bg-[--my-color] has the following css: background: var(--my-color);. Tailwind docs
But the converter converts it to background: --my-color;
Prefixing classnames with numeric values uses their negative values. e.g: -z-50 should translate to z-index: -50 but isn't converted at all
The text was updated successfully, but these errors were encountered:
ADTC
linked a pull request
Nov 1, 2024
that will
close
this issue
A class that uses css variables as arbitrary values like
bg-[--my-color]
has the following css:background: var(--my-color);
. Tailwind docsBut the converter converts it to
background: --my-color;
Prefixing classnames with numeric values uses their negative values. e.g:
-z-50
should translate toz-index: -50
but isn't converted at allThe text was updated successfully, but these errors were encountered: