diff --git a/capacitor.config.ts b/capacitor.config.ts
index e2862838..462e7a35 100644
--- a/capacitor.config.ts
+++ b/capacitor.config.ts
@@ -17,10 +17,10 @@ const config: CapacitorConfig = {
},
},
// Use this for live reload https://capacitorjs.com/docs/guides/live-reload
- // server: {
- // url: "http://192.168.1.250:1847",
- // cleartext: true
- // },
+ server: {
+ url: "http://192.168.1.115:1847",
+ cleartext: true
+ },
};
export default config;
diff --git a/src/app.css b/src/app.css
index 996ce98d..09e16180 100644
--- a/src/app.css
+++ b/src/app.css
@@ -54,6 +54,10 @@
--primary-content: oklch(var(--pc));
--secondary: oklch(var(--s));
--secondary-content: oklch(var(--sc));
+ --sait: env(safe-area-inset-top);
+ --saib: env(safe-area-inset-bottom);
+ --sail: env(safe-area-inset-left);
+ --sair: env(safe-area-inset-right);
}
:root,
@@ -64,48 +68,80 @@ html {
/* ios */
-.sait {
- padding-top: env(safe-area-inset-top);
+.pt-sai {
+ padding-top: var(--sait);
}
-.sair {
- padding-right: env(safe-area-inset-right);
+.pr-sai {
+ padding-right: var(--sair);
}
-.saib {
- padding-bottom: env(safe-area-inset-bottom);
+.pb-sai {
+ padding-bottom: var(--saib);
}
-.sail {
- padding-left: env(safe-area-inset-left);
+.pl-sai {
+ padding-left: var(--sail);
}
-.saix {
- @apply sail sair;
+.px-sai {
+ @apply pl-sai pr-sai;
}
-.saiy {
- @apply sait saib;
+.py-sai {
+ @apply pt-sai pb-sai;
}
-.sai {
- @apply saiy saix;
+.p-sai {
+ @apply py-sai px-sai;
+}
+
+.mt-sai {
+ padding-top: var(--sait);
+}
+
+.mr-sai {
+ padding-right: var(--sair);
+}
+
+.mb-sai {
+ padding-bottom: var(--saib);
+}
+
+.ml-sai {
+ padding-left: var(--sail);
+}
+
+.mx-sai {
+ @apply ml-sai mr-sai;
+}
+
+.my-sai {
+ @apply mt-sai mb-sai;
+}
+
+.m-sai {
+ @apply my-sai mx-sai;
}
.top-sai {
- top: env(safe-area-inset-top);
+ top: var(--sait);
}
.right-sai {
- right: env(safe-area-inset-right);
+ right: var(--sair);
}
.bottom-sai {
- bottom: env(safe-area-inset-bottom);
+ bottom: var(--saib);
}
.left-sai {
- left: env(safe-area-inset-left);
+ left: var(--sail);
+}
+
+.h-saib {
+ height: var(--saib);
}
/* utilities */
@@ -349,7 +385,7 @@ progress[value]::-webkit-progress-value {
}
.cb {
- @apply saib bottom-14 md:bottom-0;
+ @apply bottom-14 md:bottom-0;
}
/* chat view */
@@ -359,5 +395,5 @@ progress[value]::-webkit-progress-value {
}
.chat__scroll-down {
- @apply saib fixed bottom-28 right-4 md:bottom-16;
+ @apply fixed bottom-28 right-4 md:bottom-16;
}
diff --git a/src/app/components/PrimaryNav.svelte b/src/app/components/PrimaryNav.svelte
index 85dc24b7..038efd43 100644
--- a/src/app/components/PrimaryNav.svelte
+++ b/src/app/components/PrimaryNav.svelte
@@ -51,7 +51,7 @@