Integrated capacitor, adjusted the fetch urls and UI elements position to fit the safe area on mobile

This commit is contained in:
oleksandr-shysh
2025-06-12 11:18:32 +03:00
parent 0cd663df02
commit c5fde1d287
19 changed files with 212 additions and 76 deletions
+16
View File
@@ -17,6 +17,22 @@
box-sizing: border-box;
}
/* Add safe-area offsets for iOS native mobile device */
@supports (-webkit-touch-callout: none) {
.safe-pt {
padding-top: env(safe-area-inset-top);
}
.safe-pb {
padding-bottom: env(safe-area-inset-bottom);
}
.safe-top {
top: env(safe-area-inset-top);
}
.safe-mb {
margin-bottom: env(safe-area-inset-bottom);
}
}
/* Add custom scrollbar styles */
::-webkit-scrollbar {
width: 8px;