tailwind_to_css icon indicating copy to clipboard operation
tailwind_to_css copied to clipboard

bug: handling classnames with hyphens properly

Open dinesh-58 opened this issue 6 months ago • 0 comments

  1. 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;

  2. 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

dinesh-58 avatar Jul 29 '24 17:07 dinesh-58