Skip to content

Instantly share code, notes, and snippets.

View mhed89's full-sized avatar
🍻

Markus mhed89

🍻
  • Sweden
View GitHub Profile
@mhed89
mhed89 / fluid-typography.scss
Last active January 24, 2023 11:14
fluid typography in scss
// Define the base font-size and line-height
$base-font-size: 16px;
$base-line-height: 1.5;
// Define a mixin for setting font-size and line-height in rem units
@mixin font-size-rem($size, $line-height) {
font-size: ($size / $base-font-size) + rem;
line-height: ($line-height / $size);
}