Fixed screen size, added dark mode app menu icons, added haptics, added keyboard dismiss with swipe

This commit is contained in:
metacryst
2026-02-16 06:41:05 -06:00
parent 83a640433a
commit cc8b5035fe
19 changed files with 115 additions and 2305 deletions

7
src/util.js Normal file
View File

@@ -0,0 +1,7 @@
export default class util {
static cssVariable(value) {
return getComputedStyle(document.documentElement)
.getPropertyValue("--" + value)
.trim();
}
}