@primer/brand-css 0.71.1-rc.8e8d7e50 → 0.72.0-rc.44ea78b6

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.
@@ -75,12 +75,16 @@
75
75
  }
76
76
 
77
77
  .CTABanner-container {
78
- padding: var(--base-size-64) var(--base-size-32);
78
+ padding: var(--base-size-64) var(--base-size-20);
79
79
  z-index: 1;
80
80
  width: 100%;
81
81
  box-sizing: border-box;
82
82
  }
83
83
 
84
+ .CTABanner-container--rounded {
85
+ border-radius: var(--brand-borderRadius-medium);
86
+ }
87
+
84
88
  .CTABanner--variant-balanced .CTABanner-container {
85
89
  padding-inline: var(--base-size-20);
86
90
  padding-block: var(--base-size-32);
@@ -92,16 +96,17 @@
92
96
  }
93
97
 
94
98
  .CTABanner-content {
99
+ --CTABanner-content-gap: var(--base-size-16);
95
100
  display: flex;
96
101
  flex-direction: column;
97
- gap: var(--base-size-16);
102
+ gap: var(--CTABanner-content-gap);
98
103
  align-items: flex-start;
99
104
  max-width: 800px;
100
105
  margin: 0 auto;
101
106
  }
102
107
 
103
108
  .CTABanner--variant-minimal .CTABanner-content {
104
- gap: 0;
109
+ --CTABanner-content-gap: 0;
105
110
  }
106
111
 
107
112
  .CTABanner--variant-balanced .CTABanner-content,
@@ -170,11 +175,8 @@
170
175
 
171
176
  /* Large breakpoint and up */
172
177
  @media screen and (min-width: 63.25rem) {
173
- .CTABanner-content {
174
- gap: var(--base-size-24);
175
- }
176
178
  .CTABanner--variant-balanced .CTABanner-content {
177
- gap: var(--base-size-32);
179
+ --CTABanner-content-gap: var(--base-size-32);
178
180
  }
179
181
  .CTABanner-container {
180
182
  padding: var(--base-size-96) var(--base-size-64);
@@ -311,3 +313,8 @@
311
313
  .CTABanner-description.CTABanner-description:has(code) {
312
314
  line-height: calc(1lh * 1.25);
313
315
  }
316
+
317
+ .CTABanner-buttonGroup {
318
+ margin-block-start: calc(-1 * var(--CTABanner-content-gap, 0px));
319
+ padding-block-start: var(--base-size-12);
320
+ }
@@ -1,5 +1,20 @@
1
1
  .SectionIntroStacked {
2
- --brand-Grid-spacing-row: var(--base-size-48);
2
+ --brand-Grid-spacing-row: var(--base-size-64);
3
+ }
4
+
5
+ @media screen and (min-width: 48rem) and (max-width: 63.24rem) {
6
+ .SectionIntroStacked {
7
+ max-width: 618px;
8
+ margin-inline: auto;
9
+ }
10
+
11
+ .SectionIntroStacked.SectionIntroStacked--variant-gridline {
12
+ padding-inline: var(--base-size-32);
13
+ padding-block: calc(var(--base-size-64) - var(--base-size-4));
14
+
15
+ --SectionIntroStacked-item-divider-overflow-start: var(--base-size-32);
16
+ --SectionIntroStacked-item-divider-overflow-end: var(--base-size-32);
17
+ }
3
18
  }
4
19
 
5
20
  .SectionIntroStacked--variant-gridline {
@@ -21,15 +36,6 @@
21
36
  }
22
37
  }
23
38
 
24
- @media screen and (min-width: 63.25rem) {
25
- .SectionIntroStacked--variant-gridline {
26
- padding-inline: var(--base-size-64);
27
- padding-block: var(--base-size-64);
28
- --SectionIntroStacked-item-divider-overflow-start: 0px;
29
- --SectionIntroStacked-item-divider-overflow-end: calc(var(--brand-Grid-spacing-margin) + var(--base-size-64));
30
- }
31
- }
32
-
33
39
  @media screen and (min-width: 80rem) {
34
40
  .SectionIntroStacked--variant-gridline {
35
41
  border-inline: var(--brand-borderWidth-thin) solid var(--brand-color-border-muted);
@@ -71,10 +77,13 @@
71
77
  flex-direction: column;
72
78
  }
73
79
 
74
- @media screen and (max-width: 63.25rem) {
80
+ @media screen and (max-width: 63.24rem) {
75
81
  .SectionIntroStacked-heading {
76
82
  font-size: var(--brand-text-size-600);
77
83
  }
84
+ .SectionIntroStacked-items {
85
+ overflow: hidden;
86
+ }
78
87
  }
79
88
 
80
89
  @media screen and (min-width: 63.25rem) {
@@ -86,15 +95,18 @@
86
95
  .SectionIntroStacked--variant-gridline .SectionIntroStacked-items {
87
96
  border-inline-start: var(--brand-borderWidth-thin) solid var(--brand-color-border-muted);
88
97
  margin-block: calc(-1 * var(--base-size-64));
89
- padding-block: 0;
98
+ padding-block: calc(var(--base-size-64) - var(--base-size-32));
90
99
  position: static;
91
100
  top: auto;
92
101
  }
93
102
 
103
+ .SectionIntroStacked-content {
104
+ padding-inline-end: var(--base-size-80);
105
+ }
106
+
94
107
  .SectionIntroStacked--variant-gridline .SectionIntroStackedItem-item {
95
108
  /* Inset item content from the vertical gridline */
96
- padding-inline-start: var(--base-size-32);
97
- padding-inline-end: var(--base-size-32);
109
+ padding-inline-start: var(--base-size-64);
98
110
  }
99
111
  }
100
112
 
@@ -137,21 +149,22 @@
137
149
 
138
150
  .SectionIntroStackedItem-item--with-icon {
139
151
  display: flex;
140
- flex-direction: row;
141
152
  align-items: flex-start;
142
153
  gap: var(--base-size-24);
154
+ flex-direction: column;
143
155
  }
144
156
 
145
- @media screen and (min-width: 63.25rem) {
157
+ @media screen and (min-width: 48rem) {
146
158
  .SectionIntroStackedItem-item--with-icon {
147
159
  gap: var(--base-size-48);
160
+ flex-direction: row;
148
161
  }
149
162
  }
150
163
 
151
164
  .SectionIntroStackedItem__content {
152
165
  display: flex;
153
166
  flex-direction: column;
154
- gap: var(--base-size-8);
167
+ gap: var(--base-size-12);
155
168
  flex: 1;
156
169
  min-width: 0;
157
170
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/brand-css",
3
- "version": "0.71.1-rc.8e8d7e50",
3
+ "version": "0.72.0-rc.44ea78b6",
4
4
  "description": "CSS stylesheets for Primer Brand components",
5
5
  "keywords": [
6
6
  "primer",