@gitlab/ui 42.2.0 → 42.3.0
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 +7 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/scss_to_js/scss_variables.js +2 -2
- package/scss_to_js/scss_variables.json +3 -3
- package/src/scss/variables.scss +1 -1
package/package.json
CHANGED
|
@@ -89,7 +89,7 @@ export const purple700 = '#5943b6'
|
|
|
89
89
|
export const purple800 = '#453894'
|
|
90
90
|
export const purple900 = '#2f2a6b'
|
|
91
91
|
export const purple950 = '#232150'
|
|
92
|
-
export const gray10 = '#
|
|
92
|
+
export const gray10 = '#f5f5f5'
|
|
93
93
|
export const gray50 = '#f0f0f0'
|
|
94
94
|
export const gray100 = '#dbdbdb'
|
|
95
95
|
export const gray200 = '#bfbfbf'
|
|
@@ -342,7 +342,7 @@ export const spacer = '0.5rem'
|
|
|
342
342
|
export const spacers = '(1: 0.25rem, 2: 0.5rem, 3: 1rem, 4: 1.5rem, 5: 2rem, 6: 2.5rem, 7: 3rem, 8: 3.5rem, 9: 4rem)'
|
|
343
343
|
export const tableAccentBg = '#f0f0f0'
|
|
344
344
|
export const cardBorderColor = '#dbdbdb'
|
|
345
|
-
export const cardCapBg = '#
|
|
345
|
+
export const cardCapBg = '#f5f5f5'
|
|
346
346
|
export const glFormInputSizes = '(xs: 5rem, sm: 10rem, md: 15rem, lg: 20rem, xl: 35rem)'
|
|
347
347
|
export const popoverBg = '#fff'
|
|
348
348
|
export const popoverArrowWidth = '0.5rem'
|
|
@@ -484,8 +484,8 @@
|
|
|
484
484
|
},
|
|
485
485
|
{
|
|
486
486
|
"name": "$gray-10",
|
|
487
|
-
"value": "#
|
|
488
|
-
"compiledValue": "#
|
|
487
|
+
"value": "#f5f5f5",
|
|
488
|
+
"compiledValue": "#f5f5f5"
|
|
489
489
|
},
|
|
490
490
|
{
|
|
491
491
|
"name": "$gray-50",
|
|
@@ -1795,7 +1795,7 @@
|
|
|
1795
1795
|
{
|
|
1796
1796
|
"name": "$card-cap-bg",
|
|
1797
1797
|
"value": "$gray-10",
|
|
1798
|
-
"compiledValue": "#
|
|
1798
|
+
"compiledValue": "#f5f5f5"
|
|
1799
1799
|
},
|
|
1800
1800
|
{
|
|
1801
1801
|
"name": "$gl-form-input-sizes",
|
package/src/scss/variables.scss
CHANGED