@primer/css 18.1.0-rc.df2385df → 18.1.0-rc.e19acadf
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 -2
- package/color-modes/themes/dark_colorblind.scss +2 -2
- package/color-modes/themes/light_colorblind.scss +2 -2
- 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/meta.json +96 -96
- 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/primer.json +1 -1
- package/dist/stats/product.json +1 -1
- package/dist/stats/subhead.json +1 -1
- package/dist/subhead.css +1 -1
- package/dist/subhead.css.map +1 -1
- package/forms/form-control.scss +15 -7
- package/package.json +2 -2
- package/subhead/subhead.scss +6 -0
package/subhead/subhead.scss
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
margin-bottom: $spacer-3;
|
|
6
6
|
border-bottom: $border-width $border-style var(--color-border-muted);
|
|
7
7
|
flex-flow: row wrap;
|
|
8
|
+
justify-content: flex-end; // Keep actions right aligned.
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
// Modifier class to give a lot of breathing room between sections of content.
|
|
@@ -34,6 +35,11 @@
|
|
|
34
35
|
|
|
35
36
|
// Add 1 or 2 buttons to the right of the heading
|
|
36
37
|
.Subhead-actions {
|
|
38
|
+
margin: $spacer-1 0 $spacer-1 $spacer-1;
|
|
37
39
|
align-self: center;
|
|
38
40
|
justify-content: flex-end;
|
|
41
|
+
|
|
42
|
+
+ .Subhead-description {
|
|
43
|
+
margin-top: $spacer-1;
|
|
44
|
+
}
|
|
39
45
|
}
|