@use 'sass:string';

/**
 * Shorthand for both `content` and `display` properties of pseudo-elements.
 *
 * @param    {string}    $display ['block']    The value of `display` property.
 * @param    {string}    $content ['']         The value of `content` property.
 */
@mixin pseudo($display: 'block', $content: '') {
	content: $content;
	display: string.unquote($display);
}
