Skip to content

Instantly share code, notes, and snippets.

View kroyxt's full-sized avatar

Kristian Soto kroyxt

  • Los Teques, Venezuela
View GitHub Profile
@kroyxt
kroyxt / _function.scss
Last active December 10, 2021 12:26
Create Simple Vertical Rhythm with Sass
@use "sass:math";
@function calculateFontSize($step:0, $fontSize: 1rem) {
$ratio: 1.333;
$newFontSize: $fontSize * math.pow($ratio, $step);
@return $newFontSize;
}