stevezease / tailwind-converter

Website for converting css to tailwind
MIT License
271 stars 46 forks source link

Can't convert #3

Closed tylerharpool closed 3 years ago

tylerharpool commented 3 years ago

The reason why some css items can't be converted is because tailwindcss has support for certain colors and widths.

body {
    margin-left: 3em;
    width: 650px;
    background: tan;

}

This fixes:

 margin-left: 10px;
 width: 50%;
 background: green;