@primer/css 0.0.0-20220227040913 → 0.0.0-20220228203759
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 +8 -4
- package/actionlist/action-list-item-divider.scss +0 -1
- package/actionlist/action-list-tree.scss +0 -1
- package/alerts/flash.scss +1 -0
- package/breadcrumb/breadcrumb.scss +1 -0
- package/buttons/button.scss +1 -0
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/forms.css +1 -1
- package/dist/forms.css.map +1 -1
- package/dist/labels.css.map +1 -1
- package/dist/layout.css +1 -1
- package/dist/layout.css.map +1 -1
- package/dist/markdown.css +1 -1
- package/dist/markdown.css.map +1 -1
- package/dist/meta.json +11 -11
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/product.css +1 -1
- package/dist/product.css.map +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/forms.json +1 -1
- package/dist/stats/layout.json +1 -1
- package/dist/stats/markdown.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/product.json +1 -1
- package/forms/form-group.scss +1 -0
- package/forms/radio-group.scss +0 -1
- package/labels/mixins.scss +1 -0
- package/layout/page-layout.scss +1 -2
- package/markdown/code.scss +1 -0
- package/markdown/headings.scss +20 -0
- package/marketing/buttons/button.scss +1 -0
- package/marketing/utilities/layout.scss +0 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
# @primer/css
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20220228203759
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [#
|
|
7
|
+
- [#1954](https://github.com/primer/css/pull/1954) [`30f29d38`](https://github.com/primer/css/commit/30f29d383256a7d4023a859fdeee44471307159d) Thanks [@simurai](https://github.com/simurai)! - Fix `input-block` in `form-group`
|
|
8
8
|
|
|
9
|
-
*
|
|
9
|
+
* [#1931](https://github.com/primer/css/pull/1931) [`e5c5312e`](https://github.com/primer/css/commit/e5c5312ec8bf139f6c94d2f70ceecd4b3cd9fd82) Thanks [@vdepizzol](https://github.com/vdepizzol)! - Page layout api updates renaming spacing options in storybook
|
|
10
10
|
|
|
11
|
-
-
|
|
11
|
+
- Fake entry to force publishing
|
|
12
|
+
|
|
13
|
+
* [#1953](https://github.com/primer/css/pull/1953) [`3a91a29a`](https://github.com/primer/css/commit/3a91a29a822a28ea9679fbbb90250fc039057f23) Thanks [@hectahertz](https://github.com/hectahertz)! - Use <h2> instead of <div> on Subhead-heading docs
|
|
14
|
+
|
|
15
|
+
- [#1949](https://github.com/primer/css/pull/1949) [`dab83198`](https://github.com/primer/css/commit/dab83198c3bf1c7e03826b8cd498b8c48c9a2869) Thanks [@heiskr](https://github.com/heiskr)! - Render headings inline when in a `<summary>`
|
|
12
16
|
|
|
13
17
|
## 19.4.0
|
|
14
18
|
|
|
@@ -129,7 +129,6 @@
|
|
|
129
129
|
|
|
130
130
|
// --ActionList-tree-depth is defined as an inline style referencing the aria-level of each item ie: aria-level="2"
|
|
131
131
|
.ActionList-content {
|
|
132
|
-
// stylelint-disable-next-line primer/spacing
|
|
133
132
|
padding-left: calc(#{$spacer-2} * var(--ActionList-tree-depth));
|
|
134
133
|
}
|
|
135
134
|
}
|
package/alerts/flash.scss
CHANGED
package/buttons/button.scss
CHANGED
|
@@ -294,6 +294,7 @@
|
|
|
294
294
|
|
|
295
295
|
// Large button adds more padding around text. Use font-size utils to increase font-size.. e.g, <p class="text-gamma"><button class="btn btn-large btn-primary" type="button">Big green button</button></p>
|
|
296
296
|
.btn-large {
|
|
297
|
+
// stylelint-disable-next-line primer/spacing
|
|
297
298
|
padding: $em-spacer-6 1.5em;
|
|
298
299
|
font-size: inherit;
|
|
299
300
|
line-height: $lh-default;
|