feat(web): new fonts (#5165)

* feat(web): new fonts

* remove old fonts and make default font size larger

* fine tunning
This commit is contained in:
Alex
2023-11-19 21:06:16 -06:00
committed by GitHub
parent c1239a7337
commit f5d73b0499
10 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -37,7 +37,7 @@
$: {
if (innerWidth && screenSize) {
// Set the number of faces according to the screen size and the div size
MAX_ITEMS = screenSize < 768 ? Math.floor(innerWidth / 96) : Math.floor(innerWidth / 112);
MAX_ITEMS = screenSize < 768 ? Math.floor(innerWidth / 96) : Math.floor(innerWidth / 120);
}
}
</script>