cozy-ui 57.5.2 → 57.5.3
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,3 +1,10 @@
|
|
|
1
|
+
## [57.5.3](https://github.com/cozy/cozy-ui/compare/v57.5.2...v57.5.3) (2021-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Border color of Accordion ([4628488](https://github.com/cozy/cozy-ui/commit/4628488))
|
|
7
|
+
|
|
1
8
|
## [57.5.2](https://github.com/cozy/cozy-ui/compare/v57.5.1...v57.5.2) (2021-11-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -73,7 +73,7 @@ const makeOverrides = theme => ({
|
|
|
73
73
|
boxShadow: '0 4px 12px 0 rgba(0, 0, 0, 0.08)',
|
|
74
74
|
borderWidth: '0.0625rem',
|
|
75
75
|
borderStyle: 'solid',
|
|
76
|
-
borderColor: theme.palette.
|
|
76
|
+
borderColor: theme.palette.border.main,
|
|
77
77
|
overflow: 'hidden',
|
|
78
78
|
marginBottom: '1rem'
|
|
79
79
|
}
|
|
@@ -119,7 +119,7 @@ const makeOverrides = theme => ({
|
|
|
119
119
|
MuiAccordionDetails: {
|
|
120
120
|
root: {
|
|
121
121
|
padding: 0,
|
|
122
|
-
borderTop: `0.0625rem solid ${theme.palette.
|
|
122
|
+
borderTop: `0.0625rem solid ${theme.palette.border.main}`
|
|
123
123
|
}
|
|
124
124
|
},
|
|
125
125
|
MuiStepConnector: {
|
|
@@ -74,7 +74,7 @@ var makeOverrides = function makeOverrides(theme) {
|
|
|
74
74
|
boxShadow: '0 4px 12px 0 rgba(0, 0, 0, 0.08)',
|
|
75
75
|
borderWidth: '0.0625rem',
|
|
76
76
|
borderStyle: 'solid',
|
|
77
|
-
borderColor: theme.palette.
|
|
77
|
+
borderColor: theme.palette.border.main,
|
|
78
78
|
overflow: 'hidden',
|
|
79
79
|
marginBottom: '1rem'
|
|
80
80
|
}
|
|
@@ -120,7 +120,7 @@ var makeOverrides = function makeOverrides(theme) {
|
|
|
120
120
|
MuiAccordionDetails: {
|
|
121
121
|
root: {
|
|
122
122
|
padding: 0,
|
|
123
|
-
borderTop: "0.0625rem solid ".concat(theme.palette.
|
|
123
|
+
borderTop: "0.0625rem solid ".concat(theme.palette.border.main)
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
126
|
MuiStepConnector: {
|