diff options
| author | pml68 <pml31@protonmail.com> | 2024-01-24 07:22:42 +0000 |
|---|---|---|
| committer | pml68 <pml31@protonmail.com> | 2024-01-24 07:22:49 +0000 |
| commit | 582cf86fb4c2b045672c1d7ebed49be894355cf7 (patch) | |
| tree | 028960eb6f71b6a8458849f4e3a13d8c2cc2278c /src | |
| parent | chore: update packages (diff) | |
| download | pml68.dev-582cf86fb4c2b045672c1d7ebed49be894355cf7.tar.gz | |
fix: font size related issues on homepage
Diffstat (limited to '')
| -rw-r--r-- | src/app.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.scss b/src/app.scss index 7e47126..8cca3d9 100644 --- a/src/app.scss +++ b/src/app.scss @@ -1,10 +1,10 @@ @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap'); $font-min: 16px; -$font-desired: 2.6vh; +$font-desired: calc((2.6vh + 8vw) / 2); $font-max: 32px; -$icon-desired: 5.5vh; +$icon-desired: calc((8vh + 5vw) / 2); $icon-max: 96px; *{ |
