blocks.css "clashes" with tailwindcss
vinliao opened this issue · 1 comments
vinliao commented
vinliao commented
Found the culprit: if box-sizing: border-box;
is removed from tailwind, blocks.css works fine.
The good ol' box model problem.
Edit: another way to replicate.
- Pull blocks.css locally, add this line at the very top.
*::after,
*::before {
box-sizing: border-box;
}
- Load blocks.css on html
- Try out the
.block
class; it breaks.