tailwindcss-text-indent icon indicating copy to clipboard operation
tailwindcss-text-indent copied to clipboard

Fixes issue periods in names

Open regularlabs opened this issue 4 years ago • 0 comments

The css is messed up when the names contain periods, like:

'0.5': '0.125rem'

This will result in css like:

.-indent-0.\35{
  text-indent: -0.125rem;
}

After this fix it will correctly generate:

.-indent-\.5{
  text-indent: -0.125rem;
}

regularlabs avatar Dec 15 '20 15:12 regularlabs