fix: dont apply margin-bottom to prose br

master
Katja Lutz 2 years ago
parent f8d0b9e6e8
commit 00cdbd853d

@ -61,4 +61,13 @@
.ignore-white-space .white-space {
@apply whitespace-nowrap;
}
/*
Tailwind prose adds margin-bottom to * in some situations,
firefox renders margin-bottom on <br> elements, chrome doesnt,
margin-bottom on br is not ideal in all situations
*/
.prose br {
margin-bottom: 0;
}
}

Loading…
Cancel
Save