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.es.js
CHANGED
|
@@ -9677,11 +9677,16 @@ var index$1 = /*#__PURE__*/Object.freeze({
|
|
|
9677
9677
|
});
|
|
9678
9678
|
|
|
9679
9679
|
const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
9680
|
+
aboutInstText: {
|
|
9681
|
+
alignSelf: 'center',
|
|
9682
|
+
color: 'var(--Black, #0A1629)',
|
|
9683
|
+
fontSize: '24px',
|
|
9684
|
+
fontWeight: '400'
|
|
9685
|
+
},
|
|
9680
9686
|
aboutInstWrapper: {
|
|
9681
9687
|
padding: '64px 128px',
|
|
9682
9688
|
display: 'flex',
|
|
9683
9689
|
justifyContent: 'center',
|
|
9684
|
-
alignItems: 'center',
|
|
9685
9690
|
flexDirection: 'column'
|
|
9686
9691
|
},
|
|
9687
9692
|
abtoutInstText: {
|
|
@@ -9731,7 +9736,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9731
9736
|
},
|
|
9732
9737
|
contentWrapper: {
|
|
9733
9738
|
display: 'flex',
|
|
9734
|
-
gap: '24px'
|
|
9739
|
+
gap: '24px',
|
|
9740
|
+
marginBottom: '24px'
|
|
9735
9741
|
},
|
|
9736
9742
|
cardWrapper: {
|
|
9737
9743
|
display: 'flex',
|
|
@@ -9795,11 +9801,8 @@ function ABOUT_INSTITUTE({
|
|
|
9795
9801
|
containerWidth,
|
|
9796
9802
|
isMobile
|
|
9797
9803
|
});
|
|
9798
|
-
console.log('sectionData sid', sectionData);
|
|
9799
9804
|
const [nodeData] = sectionData?.components;
|
|
9800
|
-
console.log('nodeData sid', nodeData);
|
|
9801
9805
|
const [highlightNodeData] = nodeData?.highlight?.components;
|
|
9802
|
-
console.log('highlightNodeData sid', highlightNodeData);
|
|
9803
9806
|
const theme = useTheme();
|
|
9804
9807
|
const ImageJSX = () => /*#__PURE__*/React.createElement("div", {
|
|
9805
9808
|
className: classes.imageContainer
|