@selfcommunity/react-theme-default 0.4.5-payments.144 → 0.4.5-payments.147
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/lib/cjs/components/SCPaymentProduct.d.ts +3 -0
- package/lib/cjs/components/SCPaymentProduct.js +4 -1
- package/lib/cjs/components/SCPaymentProducts.js +1 -1
- package/lib/cjs/index.d.ts +3 -0
- package/lib/esm/components/SCPaymentProduct.d.ts +3 -0
- package/lib/esm/components/SCPaymentProduct.js +4 -1
- package/lib/esm/components/SCPaymentProducts.js +1 -1
- package/lib/esm/index.d.ts +3 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -14,7 +14,10 @@ const Component = {
|
|
|
14
14
|
},
|
|
15
15
|
'& .MuiTypography-body1': {
|
|
16
16
|
fontWeight: 200,
|
|
17
|
-
color: theme.palette.grey[600]
|
|
17
|
+
color: theme.palette.grey[600],
|
|
18
|
+
[theme.breakpoints.down('sm')]: {
|
|
19
|
+
fontSize: theme.typography.pxToRem(12)
|
|
20
|
+
}
|
|
18
21
|
}
|
|
19
22
|
},
|
|
20
23
|
'& .MuiAccordionDetails-root': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -11213,6 +11213,9 @@ declare const theme: {
|
|
|
11213
11213
|
backgroundColor: string;
|
|
11214
11214
|
};
|
|
11215
11215
|
'& .MuiTypography-body1': {
|
|
11216
|
+
[x: number]: {
|
|
11217
|
+
fontSize: any;
|
|
11218
|
+
};
|
|
11216
11219
|
fontWeight: number;
|
|
11217
11220
|
color: any;
|
|
11218
11221
|
};
|
|
@@ -12,7 +12,10 @@ const Component = {
|
|
|
12
12
|
},
|
|
13
13
|
'& .MuiTypography-body1': {
|
|
14
14
|
fontWeight: 200,
|
|
15
|
-
color: theme.palette.grey[600]
|
|
15
|
+
color: theme.palette.grey[600],
|
|
16
|
+
[theme.breakpoints.down('sm')]: {
|
|
17
|
+
fontSize: theme.typography.pxToRem(12)
|
|
18
|
+
}
|
|
16
19
|
}
|
|
17
20
|
},
|
|
18
21
|
'& .MuiAccordionDetails-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -11213,6 +11213,9 @@ declare const theme: {
|
|
|
11213
11213
|
backgroundColor: string;
|
|
11214
11214
|
};
|
|
11215
11215
|
'& .MuiTypography-body1': {
|
|
11216
|
+
[x: number]: {
|
|
11217
|
+
fontSize: any;
|
|
11218
|
+
};
|
|
11216
11219
|
fontWeight: number;
|
|
11217
11220
|
color: any;
|
|
11218
11221
|
};
|