Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created August 8, 2019 12:14
Show Gist options
  • Save zastrow/60bfbe85b3b9c36c15efc93aab5e1545 to your computer and use it in GitHub Desktop.
Save zastrow/60bfbe85b3b9c36c15efc93aab5e1545 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
> 1%
last 2 versions
// ----
// libsass (v3.5.4)
// ----
$font-sizes: (
xs: 0.75rem,
sm: 0.875rem,
md: 1.125rem,
lg: 1.25rem,
xl: 1.75rem
);
@each $key, $value in $font-sizes {
.font-size-#{$key} {
font-size: $value;
}
}
.font-size-xs {
font-size: 0.75rem;
}
.font-size-sm {
font-size: 0.875rem;
}
.font-size-md {
font-size: 1.125rem;
}
.font-size-lg {
font-size: 1.25rem;
}
.font-size-xl {
font-size: 1.75rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment