Can’t seem to figure out why all of our CMS articles have a line break on desktop and above but no line breaks on tablet and below. Using a rich-text block to display CMS content.
Your Paragraph tag is removing the padding on tablet breakpoint that’s giving them space between other paragraph elements:
Normally paragraph elements have a 15px bottom margin by default (to space them out from one another), however it looks like that style was overwritten on your base breakpoint and uses the padding style instead:
Just update the padding styles on your default Paragraph tags for tablet and you should be seeing a more appropriate spacing
Thank you! That solved it.