@floegence/floe-webapp-core 0.35.9 → 0.35.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ui.css
CHANGED
|
@@ -1011,9 +1011,15 @@
|
|
|
1011
1011
|
============================================ */
|
|
1012
1012
|
|
|
1013
1013
|
.mobile-keyboard-root {
|
|
1014
|
+
--mobile-keyboard-viewport-left: 0px;
|
|
1015
|
+
--mobile-keyboard-viewport-bottom: 0px;
|
|
1016
|
+
--mobile-keyboard-viewport-width: 100vw;
|
|
1017
|
+
--mobile-keyboard-viewport-height: 100dvh;
|
|
1014
1018
|
position: fixed;
|
|
1015
|
-
|
|
1016
|
-
bottom:
|
|
1019
|
+
left: var(--mobile-keyboard-viewport-left);
|
|
1020
|
+
bottom: var(--mobile-keyboard-viewport-bottom);
|
|
1021
|
+
width: var(--mobile-keyboard-viewport-width);
|
|
1022
|
+
max-width: 100vw;
|
|
1017
1023
|
z-index: 50;
|
|
1018
1024
|
transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px)));
|
|
1019
1025
|
opacity: 0;
|
|
@@ -1194,9 +1200,9 @@
|
|
|
1194
1200
|
.mobile-keyboard-scroll {
|
|
1195
1201
|
display: flex;
|
|
1196
1202
|
flex-direction: column;
|
|
1197
|
-
gap: 0.
|
|
1198
|
-
max-height: min(18rem,
|
|
1199
|
-
padding: 0.
|
|
1203
|
+
gap: 0.25rem;
|
|
1204
|
+
max-height: min(18rem, calc(var(--mobile-keyboard-viewport-height, 100dvh) * 0.56));
|
|
1205
|
+
padding: 0.375rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
|
|
1200
1206
|
overflow-y: auto;
|
|
1201
1207
|
overscroll-behavior: contain;
|
|
1202
1208
|
scrollbar-width: none;
|
|
@@ -1436,10 +1442,10 @@
|
|
|
1436
1442
|
|
|
1437
1443
|
@media (max-width: 640px) {
|
|
1438
1444
|
.mobile-keyboard-scroll {
|
|
1439
|
-
gap: 0.
|
|
1440
|
-
max-height: min(15.5rem,
|
|
1441
|
-
padding-inline: 0.
|
|
1442
|
-
padding-top: 0.
|
|
1445
|
+
gap: 0.25rem;
|
|
1446
|
+
max-height: min(15.5rem, calc(var(--mobile-keyboard-viewport-height, 100dvh) * 0.48));
|
|
1447
|
+
padding-inline: 0.375rem;
|
|
1448
|
+
padding-top: 0.3125rem;
|
|
1443
1449
|
}
|
|
1444
1450
|
|
|
1445
1451
|
.mobile-keyboard-suggestion-rail,
|