Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @mixin fluid($property, $min-value, $max-value, $min-vw: $min_width, $max-vw: $max_width, $multiplier: 1, $unit: 'px')
- #{$property}: calc(#{$multiplier} * (#{$min-value} * #{1 + $unit}))
- @media screen and (min-width: $min-vw)
- #{$property}: calc(#{$multiplier} * (#{$min-value} * #{1 + $unit} + (#{$max-value} - #{$min-value}) * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)})))
- @media screen and (min-width: $max-vw)
- #{$property}: calc(#{$multiplier} * (#{$max-value} * #{1 + $unit}))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement