File "rem.scss"

Full Path: /home/warrior1/public_html/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/scss/functions/rem.scss
File size: 396 bytes
MIME-type: text/plain
Charset: utf-8


// ======================================================================
// Rem function
//
// Convert px to rem in a readable fashion.
//
// Example: font-size: rem( 21px );
// ======================================================================

@use "sass:math";

$root-font-size: 16px;

@function rem( $pixels, $context: $root-font-size ) {
	@return math.div($pixels, $context) * 1rem;
}