diy-template-components 0.2.60 → 0.2.62
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/index.es.js +17 -1
- package/build/index.es.js.map +1 -1
- package/build/index.js +17 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -7004,6 +7004,9 @@ const useWebinarPromotionPage = createUseStyles(theme => {
|
|
|
7004
7004
|
borderRadius: '6px'
|
|
7005
7005
|
},
|
|
7006
7006
|
'@media (max-width: 767px)': {
|
|
7007
|
+
bannerContainerText: {
|
|
7008
|
+
fontSize: '16px'
|
|
7009
|
+
},
|
|
7007
7010
|
courseViewContainer: {
|
|
7008
7011
|
width: '100%'
|
|
7009
7012
|
},
|
|
@@ -7033,6 +7036,11 @@ const useWebinarPromotionPage = createUseStyles(theme => {
|
|
|
7033
7036
|
videoDetailsContent: {
|
|
7034
7037
|
marginTop: '4px'
|
|
7035
7038
|
}
|
|
7039
|
+
},
|
|
7040
|
+
'@media (max-width: 420px)': {
|
|
7041
|
+
bannerContainerText: {
|
|
7042
|
+
fontSize: '14px'
|
|
7043
|
+
}
|
|
7036
7044
|
}
|
|
7037
7045
|
};
|
|
7038
7046
|
});
|
|
@@ -7476,6 +7484,9 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
7476
7484
|
marginLeft: 'auto'
|
|
7477
7485
|
},
|
|
7478
7486
|
'@media (max-width: 767px)': {
|
|
7487
|
+
bannerContainerText: {
|
|
7488
|
+
fontSize: '16px'
|
|
7489
|
+
},
|
|
7479
7490
|
courseViewContainer: {
|
|
7480
7491
|
width: '100%',
|
|
7481
7492
|
paddingBottom: '10px'
|
|
@@ -7507,6 +7518,11 @@ const useCoursePromotionPage = createUseStyles(theme => {
|
|
|
7507
7518
|
videoDetailsContent: {
|
|
7508
7519
|
marginTop: '4px'
|
|
7509
7520
|
}
|
|
7521
|
+
},
|
|
7522
|
+
'@media (max-width: 420px)': {
|
|
7523
|
+
bannerContainerText: {
|
|
7524
|
+
fontSize: '14px'
|
|
7525
|
+
}
|
|
7510
7526
|
}
|
|
7511
7527
|
};
|
|
7512
7528
|
});
|
|
@@ -8066,7 +8082,7 @@ const FormPage = ({
|
|
|
8066
8082
|
}, /*#__PURE__*/React.createElement("input", {
|
|
8067
8083
|
// value={option.value}
|
|
8068
8084
|
type: "radio",
|
|
8069
|
-
name:
|
|
8085
|
+
name: `text_${item._id}`,
|
|
8070
8086
|
required: item.isRequired,
|
|
8071
8087
|
value: option.value,
|
|
8072
8088
|
checked: formData[item._id]?.solutionArray?.[0] === option.value
|