@primer/css 20.1.1 → 20.2.0-rc.a17d39f8
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 +6 -0
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/layout.css +1 -1
- package/dist/layout.css.map +1 -1
- package/dist/meta.json +108 -108
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/layout.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/layout/page-layout.scss +9 -6
- package/package.json +2 -2
package/layout/page-layout.scss
CHANGED
|
@@ -111,12 +111,15 @@ $Layout-responsive-variant-max-breakpoint: 'md' !default;
|
|
|
111
111
|
|
|
112
112
|
// sticky pane
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
114
|
+
.PageLayout-pane--sticky {
|
|
115
|
+
position: sticky;
|
|
116
|
+
top: 0;
|
|
117
|
+
max-height: 100vh;
|
|
118
|
+
overflow: auto;
|
|
119
|
+
scrollbar-width: thin;
|
|
120
|
+
|
|
121
|
+
@supports (max-height: 100dvh) {
|
|
122
|
+
max-height: 100dvh;
|
|
120
123
|
}
|
|
121
124
|
}
|
|
122
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@primer/css",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.0-rc.a17d39f8",
|
|
4
4
|
"description": "The CSS implementation of GitHub's Primer Design System",
|
|
5
5
|
"homepage": "https://primer.style/css",
|
|
6
6
|
"author": "GitHub, Inc.",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"front-matter": "4.0.2",
|
|
61
61
|
"fs-extra": "10.1.0",
|
|
62
62
|
"globby": "13.1.1",
|
|
63
|
-
"jest": "
|
|
63
|
+
"jest": "28.1.0",
|
|
64
64
|
"js-yaml": "4.1.0",
|
|
65
65
|
"postcss": "8.4.13",
|
|
66
66
|
"postcss-calc": "8.2.4",
|