@asksable/site-connector 0.6.12 → 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 +14 -8
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2484,6 +2484,10 @@
|
|
|
2484
2484
|
color: #7f1d1d;
|
|
2485
2485
|
}
|
|
2486
2486
|
|
|
2487
|
+
.bw-service-address-section .bw-service-warning {
|
|
2488
|
+
margin-top: 14px;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2487
2491
|
.bw-service-warning--soft {
|
|
2488
2492
|
border-color: #f59e0b;
|
|
2489
2493
|
background: #fffbeb;
|
|
@@ -2723,15 +2727,15 @@
|
|
|
2723
2727
|
@media (max-width: 1024px) {
|
|
2724
2728
|
/* Lock the frame to a single height across all steps so the widget
|
|
2725
2729
|
doesn't bounce as the user moves between services / date / etc.
|
|
2726
|
-
Sized to
|
|
2727
|
-
|
|
2728
|
-
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. */
|
|
2729
2733
|
.bw {
|
|
2730
2734
|
/* svh (small viewport height) doesn't jump when iOS Safari's URL
|
|
2731
2735
|
bar toggles, unlike vh which uses the largest possible height
|
|
2732
2736
|
and overflows when bars become visible. */
|
|
2733
|
-
min-height:
|
|
2734
|
-
max-height:
|
|
2737
|
+
min-height: 92svh;
|
|
2738
|
+
max-height: 92svh;
|
|
2735
2739
|
}
|
|
2736
2740
|
|
|
2737
2741
|
/* Lock header/footer in the column so they never shrink under
|
|
@@ -2746,6 +2750,8 @@
|
|
|
2746
2750
|
}
|
|
2747
2751
|
|
|
2748
2752
|
.bw-body {
|
|
2753
|
+
flex: 1 1 auto;
|
|
2754
|
+
min-height: 0;
|
|
2749
2755
|
overflow-y: auto;
|
|
2750
2756
|
-webkit-overflow-scrolling: touch;
|
|
2751
2757
|
overscroll-behavior: contain;
|
|
@@ -2762,8 +2768,8 @@
|
|
|
2762
2768
|
}
|
|
2763
2769
|
|
|
2764
2770
|
.bw-placeholder {
|
|
2765
|
-
min-height:
|
|
2766
|
-
max-height:
|
|
2771
|
+
min-height: 92svh;
|
|
2772
|
+
max-height: 92svh;
|
|
2767
2773
|
}
|
|
2768
2774
|
|
|
2769
2775
|
.bw-placeholder-header {
|
|
@@ -3057,7 +3063,7 @@
|
|
|
3057
3063
|
there's always real breathing room below the Confirm button.
|
|
3058
3064
|
Host site MUST include `viewport-fit=cover` in its viewport
|
|
3059
3065
|
meta for env(safe-area-inset-*) to be non-zero on iOS. */
|
|
3060
|
-
margin-top:
|
|
3066
|
+
margin-top: auto;
|
|
3061
3067
|
padding: 16px 24px max(24px, calc(env(safe-area-inset-bottom) + 16px));
|
|
3062
3068
|
border-top: 1px solid var(--bw-border-light);
|
|
3063
3069
|
}
|