Skip to content

Instantly share code, notes, and snippets.

@agronom81
Created July 31, 2024 04:44
Show Gist options
  • Save agronom81/d0385a0696bef6372848aa46b5f3d4c4 to your computer and use it in GitHub Desktop.
Save agronom81/d0385a0696bef6372848aa46b5f3d4c4 to your computer and use it in GitHub Desktop.
Sass/SCSS function to convert from px to rem
/* Usage -- font-size: rem(16) */
@use 'sass:math';
@function rem($pixel) {
@if math.is-unitless($pixel) {
@return math.div($pixel, 16) + rem;
} @else {
@error 'Don\'t use units when using the rem() function; only numbers.';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment