@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 CHANGED
@@ -1,14 +1,18 @@
1
1
  # @primer/css
2
2
 
3
- ## 0.0.0-20220227040913
3
+ ## 0.0.0-20220228203759
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - [#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
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
- * Fake entry to force publishing
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
- - [#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
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
 
@@ -16,7 +16,6 @@
16
16
  display: block;
17
17
  height: 1px;
18
18
  padding: 0;
19
- // stylelint-disable-next-line primer/spacing
20
19
  margin: ($spacer-2 - 1px) ($spacer-2 * -1) $spacer-2;
21
20
  list-style: none;
22
21
  background: var(--color-action-list-item-inline-divider);
@@ -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
@@ -144,6 +144,7 @@
144
144
  // FIXME deprecate this
145
145
  .warning {
146
146
  padding: $em-spacer-5;
147
+ // stylelint-disable-next-line primer/spacing
147
148
  margin-bottom: 0.8em;
148
149
  font-weight: $font-weight-bold;
149
150
  background-color: var(--color-attention-subtle);
@@ -1,5 +1,6 @@
1
1
  .breadcrumb-item {
2
2
  display: inline-block;
3
+ // stylelint-disable-next-line primer/spacing
3
4
  margin-left: -0.35em;
4
5
  white-space: nowrap;
5
6
  list-style: none;
@@ -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;