Advertisement
artemsemkin

Untitled

Sep 28th, 2023
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @mixin fluid($property, $min-value, $max-value, $min-vw: $min_width, $max-vw: $max_width, $multiplier: 1, $unit: 'px')
  2. #{$property}: calc(#{$multiplier} * (#{$min-value} * #{1 + $unit}))
  3. @media screen and (min-width: $min-vw)
  4. #{$property}: calc(#{$multiplier} * (#{$min-value} * #{1 + $unit} + (#{$max-value} - #{$min-value}) * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)})))
  5. @media screen and (min-width: $max-vw)
  6. #{$property}: calc(#{$multiplier} * (#{$max-value} * #{1 + $unit}))
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement