Skip to content

Instantly share code, notes, and snippets.

@jasonmelgoza
Forked from OliverJAsh/a.rb
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonmelgoza/aecceec9bcfe67b40029 to your computer and use it in GitHub Desktop.
Save jasonmelgoza/aecceec9bcfe67b40029 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