//----------------------------------------------------------------------------------------------------------------------
// ROOT PSEUDO ELEMENT
//----------------------------------------------------------------------------------------------------------------------

/// Styling for the `:root` pseudo element. Contains root font size and line height.
/// @group base
:root {
	font-size: $font-size-root; // For rem calculations
	line-height: strip-unit(rhythm($font-size-root * $rhythm-ratio)) * $font-size-root;
}