@asksable/site-connector 0.6.13 → 0.6.14
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/styles.css +10 -8
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2727,15 +2727,15 @@
|
|
|
2727
2727
|
@media (max-width: 1024px) {
|
|
2728
2728
|
/* Lock the frame to a single height across all steps so the widget
|
|
2729
2729
|
doesn't bounce as the user moves between services / date / etc.
|
|
2730
|
-
Sized to
|
|
2731
|
-
|
|
2732
|
-
step exceeds it. */
|
|
2730
|
+
Sized to feel like a mobile app panel: the footer sits near the
|
|
2731
|
+
viewport bottom on tall phones, while the body scrolls internally
|
|
2732
|
+
when a step exceeds it. */
|
|
2733
2733
|
.bw {
|
|
2734
2734
|
/* svh (small viewport height) doesn't jump when iOS Safari's URL
|
|
2735
2735
|
bar toggles, unlike vh which uses the largest possible height
|
|
2736
2736
|
and overflows when bars become visible. */
|
|
2737
|
-
min-height:
|
|
2738
|
-
max-height:
|
|
2737
|
+
min-height: 92svh;
|
|
2738
|
+
max-height: 92svh;
|
|
2739
2739
|
}
|
|
2740
2740
|
|
|
2741
2741
|
/* Lock header/footer in the column so they never shrink under
|
|
@@ -2750,6 +2750,8 @@
|
|
|
2750
2750
|
}
|
|
2751
2751
|
|
|
2752
2752
|
.bw-body {
|
|
2753
|
+
flex: 1 1 auto;
|
|
2754
|
+
min-height: 0;
|
|
2753
2755
|
overflow-y: auto;
|
|
2754
2756
|
-webkit-overflow-scrolling: touch;
|
|
2755
2757
|
overscroll-behavior: contain;
|
|
@@ -2766,8 +2768,8 @@
|
|
|
2766
2768
|
}
|
|
2767
2769
|
|
|
2768
2770
|
.bw-placeholder {
|
|
2769
|
-
min-height:
|
|
2770
|
-
max-height:
|
|
2771
|
+
min-height: 92svh;
|
|
2772
|
+
max-height: 92svh;
|
|
2771
2773
|
}
|
|
2772
2774
|
|
|
2773
2775
|
.bw-placeholder-header {
|
|
@@ -3061,7 +3063,7 @@
|
|
|
3061
3063
|
there's always real breathing room below the Confirm button.
|
|
3062
3064
|
Host site MUST include `viewport-fit=cover` in its viewport
|
|
3063
3065
|
meta for env(safe-area-inset-*) to be non-zero on iOS. */
|
|
3064
|
-
margin-top:
|
|
3066
|
+
margin-top: auto;
|
|
3065
3067
|
padding: 16px 24px max(24px, calc(env(safe-area-inset-bottom) + 16px));
|
|
3066
3068
|
border-top: 1px solid var(--bw-border-light);
|
|
3067
3069
|
}
|