Skip to content

Instantly share code, notes, and snippets.

@OliverJAsh
Created May 22, 2014 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save OliverJAsh/02eb7911227235a6c82a to your computer and use it in GitHub Desktop.
Save OliverJAsh/02eb7911227235a6c82a to your computer and use it in GitHub Desktop.
@mixin font-size($percent, $min-font-size, $max-font-size) {
// Min
font-size: $min-font-size;
@include breakpoint($min-font-size/$percent * 100) {
font-size: #{$percent}vw;
}
@include breakpoint($max-font-size/$percent * 100) {
font-size: $max-font-size;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment