@stainless-api/docs 0.1.0-beta.104 → 0.1.0-beta.106

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.
@@ -59,6 +59,8 @@ SDK_SectionTimeouts
59
59
 
60
60
  SDK_SectionProxies
61
61
 
62
+ SDK_SectionConnectionPooling
63
+
62
64
  SDK_SectionHTTPS
63
65
 
64
66
  SDK_SectionEnvironments
@@ -59,6 +59,8 @@ SDK_SectionTimeouts
59
59
 
60
60
  SDK_SectionProxies
61
61
 
62
+ SDK_SectionConnectionPooling
63
+
62
64
  SDK_SectionHTTPS
63
65
 
64
66
  SDK_SectionEnvironments
package/styles/page.css CHANGED
@@ -39,13 +39,16 @@
39
39
  display: grid;
40
40
 
41
41
  /* TODO: verify that env-safe-area-inset is behaving as we expect */
42
- --stl-viewport-width: calc(100vw - env(safe-area-inset-left, 0) - env(safe-area-inset-right, 0));
42
+ --stl-viewport-width: calc(
43
+ 100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) -
44
+ var(--stl-chat-panel-width, 0px)
45
+ );
43
46
  --stl-page-gutter-left: calc(
44
- env(safe-area-inset-left, 0) +
47
+ env(safe-area-inset-left, 0px) +
45
48
  max(var(--stl-page-min-padding), (var(--stl-viewport-width) - var(--stl-page-max-width)) / 2)
46
49
  );
47
50
  --stl-page-gutter-right: calc(
48
- env(safe-area-inset-right, 0) +
51
+ env(safe-area-inset-right, 0px) +
49
52
  max(var(--stl-page-min-padding), (var(--stl-viewport-width) - var(--stl-page-max-width)) / 2)
50
53
  );
51
54
 
@@ -183,7 +186,7 @@ header > .header {
183
186
  max-width: min(var(--stl-two-column-content-max-width), 100%);
184
187
  padding-inline-start: clamp(
185
188
  var(--stl-content-padding),
186
- var(--stl-page-gutter-right) - env(safe-area-inset-right, 0),
189
+ var(--stl-page-gutter-right) - env(safe-area-inset-right, 0px),
187
190
  var(--stl-content-padding) * 2
188
191
  );
189
192
  padding-inline-end: 0;