min(a, b)
Returns the smallest of the values specified
@function min($a, $b)
Parameters
- a
The first value - b
The second value 
Returns
Either the a or b. a is returned if it is less than b, otherwise b
is returned.
@function min($a, $b)
Either the a or b. a is returned if it is less than b, otherwise b
is returned.