tailwind_to_css icon indicating copy to clipboard operation
tailwind_to_css copied to clipboard

Convert tailwind class to css

Results 16 tailwind_to_css issues
Sort by recently updated
recently updated
newest added

- `enhancement` Added all styles for the tailwind class names as `size` that sets the ***height and width*** of element

Not having a semi-colon at the end of the lines flwo-root grid inline-grid which caused problems in the output ![Screenshot 2024-05-01 235554 copy](https://github.com/Devzstudio/tailwind_to_css/assets/81633150/9d4b6b0b-ab80-4383-9a86-163d5b618778) For example, do not create a grid

input text-red-900 text-[500px] output color: #7F1D1D; color: 500px;

Trims whitespace from copied text to prevent multiple blank lines [1.webm](https://github.com/user-attachments/assets/912c1913-8749-472c-a665-5de07ef1ce11)

There is an image that show the issue: ![image](https://github.com/user-attachments/assets/c36495fb-23a5-4aa4-aa02-94584b3384fc)

1) A class that uses css variables as arbitrary values like `bg-[--my-color]` has the following css: `background: var(--my-color);`. [Tailwind docs](https://tailwindcss.com/docs/adding-custom-styles#using-arbitrary-values:~:text=When%20using%20a%20CSS%20variable) But the converter converts it to `background: --my-color;` 2) Prefixing...