Adapt font size if laptop or not

Sets the base font size to 10pt if laptop mode is enabled, or 11pt if not in laptop mode.
This commit is contained in:
Leo THIVILLON
2024-05-21 17:50:44 +02:00
committed by GitHub
parent cc39a8d37a
commit d2473037af

View File

@@ -21,7 +21,7 @@ $large-font-family: Roboto, "M+ 1c", Cantarell, Sans-Serif;
// font sizes
$root-font-size: if($laptop == 'false', 15px, 13px);
$subheading-size: if($laptop == 'false', 17px, 15px);
$base_font_size: 11pt;
$base_font_size: if($laptop == 'false', 11pt, 10pt);
// opacities
$higher_opacity: 0.9;