There was an error while loading. Please reload this page.
If I modify the modules section of my tailwind.js to add hover support to margins:
modules
tailwind.js
margin: ['responsive', 'hover'],
Then I can do this:
hover:mt-1
But this does not work
hover:-mt-1
I'm guessing because of the leading - is causing an issue?
-