@matrix-widget-toolkit/mui 1.0.2 → 1.0.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/build/cjs/index.js +3 -2
- package/build/esm/index.js +3 -2
- package/package.json +1 -1
package/build/cjs/index.js
CHANGED
|
@@ -372,8 +372,9 @@ var baseTheme = {
|
|
|
372
372
|
root: function (_a) {
|
|
373
373
|
var theme = _a.theme;
|
|
374
374
|
return ({
|
|
375
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
376
|
-
|
|
375
|
+
backgroundColor: theme.palette.mode === 'dark'
|
|
376
|
+
? 'rgba(0,0,0,.8)'
|
|
377
|
+
: 'rgba(46,48,51,.304)',
|
|
377
378
|
});
|
|
378
379
|
},
|
|
379
380
|
invisible: {
|
package/build/esm/index.js
CHANGED
|
@@ -360,8 +360,9 @@ var baseTheme = {
|
|
|
360
360
|
root: function (_a) {
|
|
361
361
|
var theme = _a.theme;
|
|
362
362
|
return ({
|
|
363
|
-
backgroundColor: theme.palette.mode === 'dark'
|
|
364
|
-
|
|
363
|
+
backgroundColor: theme.palette.mode === 'dark'
|
|
364
|
+
? 'rgba(0,0,0,.8)'
|
|
365
|
+
: 'rgba(46,48,51,.304)',
|
|
365
366
|
});
|
|
366
367
|
},
|
|
367
368
|
invisible: {
|
package/package.json
CHANGED