From e12822c7ce044c57334dfa814aaa3b33d1e9b5d4 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:40:55 +0100 Subject: [PATCH 1/3] disable on-schreen keyboard by default --- src/stores/settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 107a394e..a4544319 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -48,7 +48,7 @@ export const useSettingsStore = defineStore("settings", { ), useNumericKeyboard: useLocalStorage( "cashu.settings.useNumericKeyboard", - true + false ), enableReceiveSwaps: useLocalStorage( "cashu.settings.enableReceiveSwaps", From 416800f372a68b1b7cd950b8d2ed883d9e15c7f5 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 30 Dec 2024 23:21:23 +0100 Subject: [PATCH 2/3] fix notification margin --- src/css/app.scss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/css/app.scss b/src/css/app.scss index 1cf5f6d6..c747d93e 100644 --- a/src/css/app.scss +++ b/src/css/app.scss @@ -5,13 +5,12 @@ body { overscroll-behavior-y: contain; } +// margin for top elements for ios safe area body, .q-drawer, .q-header, -.q-dialog__inner > div, -.q-notification { +.q-dialog__inner > div { margin-top: var(--safe-area-inset-top); - // margin-top: 100px; // for testing } .q-dialog__inner > div { From 8a52b0236b0fa5896ad775b7e26bf11704ed0ce5 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 30 Dec 2024 23:22:37 +0100 Subject: [PATCH 3/3] ignore ios and android prettier --- .prettierignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.prettierignore b/.prettierignore index c73ca9fc..b68cef20 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,5 @@ dist src-capacitor src-cordova +android +ios