Convert <br> elements to inline spaces

For when you want to remove a <br> so text runs inline. Using display: none; also removes the space, so if you are collapsing sentences this method is better (found in conversation here).

br {
	content: " ";
	
	&:after {
		content: " ";
	}
}