tailwindcss/typography overflow
2025-10-06
@tailwindcss/typography doesn't automatically wrap blocks of code, p tags, etc
here's a temporary fix preventing the horizontal overflow
/* globals.css */
pre > code {
white-space: pre-wrap;
word-break: break-word;
}
.prose > * {
word-break: break-word;
}