Merge pull request #1066 from kernelb00t/patch-1

Adapt font size if laptop or not
This commit is contained in:
Vince 2024-08-29 06:50:35 +08:00 committed by GitHub
commit 643ca7b3d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;