mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-31 06:08:33 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			221 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			221 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
|   | @function pxToRem($pixels, $context: $browser-context) { | ||
|  |   @if (unitless($pixels)) { | ||
|  |     $pixels: $pixels * 1px; | ||
|  |   } | ||
|  | 
 | ||
|  |   @if (unitless($context)) { | ||
|  |     $context: $context * 1px; | ||
|  |   } | ||
|  | 
 | ||
|  |   @return $pixels / $context * 1rem; | ||
|  | } |