/**
 * This is the coupled pair of mixins
 * allows to manipulate over the line breaks that were set manually with `br` tag.
 */

/**
 * Removes a line breaks inside of the current element.
 */
@mixin br-hide {
	br {
		display: none;
	}
}

/**
 * Restores a line breaks inside of the current element.
 */
@mixin br-show {
	br {
		display: block;
	}
}
