diy-template-components 2.0.24 → 2.0.25
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 +8 -5
- package/build/index.es.js.map +1 -1
- package/build/index.js +8 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -9693,11 +9693,16 @@ var index$1 = /*#__PURE__*/Object.freeze({
|
|
|
9693
9693
|
});
|
|
9694
9694
|
|
|
9695
9695
|
const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
9696
|
+
aboutInstText: {
|
|
9697
|
+
alignSelf: 'center',
|
|
9698
|
+
color: 'var(--Black, #0A1629)',
|
|
9699
|
+
fontSize: '24px',
|
|
9700
|
+
fontWeight: '400'
|
|
9701
|
+
},
|
|
9696
9702
|
aboutInstWrapper: {
|
|
9697
9703
|
padding: '64px 128px',
|
|
9698
9704
|
display: 'flex',
|
|
9699
9705
|
justifyContent: 'center',
|
|
9700
|
-
alignItems: 'center',
|
|
9701
9706
|
flexDirection: 'column'
|
|
9702
9707
|
},
|
|
9703
9708
|
abtoutInstText: {
|
|
@@ -9747,7 +9752,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9747
9752
|
},
|
|
9748
9753
|
contentWrapper: {
|
|
9749
9754
|
display: 'flex',
|
|
9750
|
-
gap: '24px'
|
|
9755
|
+
gap: '24px',
|
|
9756
|
+
marginBottom: '24px'
|
|
9751
9757
|
},
|
|
9752
9758
|
cardWrapper: {
|
|
9753
9759
|
display: 'flex',
|
|
@@ -9811,11 +9817,8 @@ function ABOUT_INSTITUTE({
|
|
|
9811
9817
|
containerWidth,
|
|
9812
9818
|
isMobile
|
|
9813
9819
|
});
|
|
9814
|
-
console.log('sectionData sid', sectionData);
|
|
9815
9820
|
const [nodeData] = sectionData?.components;
|
|
9816
|
-
console.log('nodeData sid', nodeData);
|
|
9817
9821
|
const [highlightNodeData] = nodeData?.highlight?.components;
|
|
9818
|
-
console.log('highlightNodeData sid', highlightNodeData);
|
|
9819
9822
|
const theme = useTheme();
|
|
9820
9823
|
const ImageJSX = () => /*#__PURE__*/React__default["default"].createElement("div", {
|
|
9821
9824
|
className: classes.imageContainer
|