@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.
- package/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/plugin/vendor/preview.worker.docs.js +7775 -6679
- package/plugin/vendor/templates/java.md +2 -0
- package/plugin/vendor/templates/kotlin.md +2 -0
- package/styles/page.css +7 -4
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(
|
|
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,
|
|
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,
|
|
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,
|
|
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;
|