Skip to content

Commit

Permalink
smaller font on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
syxanash committed Dec 23, 2024
1 parent 05c084e commit 1b7e5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/bluerain.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const rainFonts = [
];

const fontSizes = [10, 15, 17, 20, 25];
let fontSize = fontSizes[2];
let fontSize = Util.isMobile() ? fontSizes[1] : fontSizes[2];

let showEmojis = true;
let showTextShadow = false;
Expand Down

0 comments on commit 1b7e5b5

Please sign in to comment.