// --------------------------------------------------------------------------- // @function percentage-round // // Similar to the SASS percentage() function, but rounds down to 2 decimals // $columns : Fraction to convert to percentage // @return : Percentage value rounded down to 2 decimals @function percentage-round( $value ) { @return floor( percentage( $value ) * 100 ) / 100; }