diy-template-components 2.0.26 → 2.0.28
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 +33 -14
- package/build/index.es.js.map +1 -1
- package/build/index.js +33 -14
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -9740,7 +9740,10 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9740
9740
|
width: '240px',
|
|
9741
9741
|
height: '240px',
|
|
9742
9742
|
borderRadius: '16px',
|
|
9743
|
-
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9743
|
+
border: '1px solid var(--stroke, #D8E0F0)',
|
|
9744
|
+
display: 'flex',
|
|
9745
|
+
justifyContent: 'center',
|
|
9746
|
+
alignItems: 'center'
|
|
9744
9747
|
},
|
|
9745
9748
|
image: {
|
|
9746
9749
|
maxWidth: '100%',
|
|
@@ -9754,7 +9757,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9754
9757
|
display: 'flex',
|
|
9755
9758
|
flexDirection: 'column',
|
|
9756
9759
|
borderRadius: '16px',
|
|
9757
|
-
background: 'var(--Blue-Tertiary, #F4F9FF)'
|
|
9760
|
+
background: 'var(--Blue-Tertiary, #F4F9FF)',
|
|
9761
|
+
flexGrow: 1
|
|
9758
9762
|
},
|
|
9759
9763
|
metaInfo: {
|
|
9760
9764
|
display: 'flex',
|
|
@@ -9762,7 +9766,10 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9762
9766
|
flexWrap: 'wrap'
|
|
9763
9767
|
},
|
|
9764
9768
|
metaInfoChild: {
|
|
9765
|
-
display: 'flex'
|
|
9769
|
+
display: 'flex',
|
|
9770
|
+
justifyContent: 'center',
|
|
9771
|
+
alignItems: 'center',
|
|
9772
|
+
gap: '6px'
|
|
9766
9773
|
},
|
|
9767
9774
|
contentWrapper: {
|
|
9768
9775
|
display: 'flex',
|
|
@@ -9773,16 +9780,17 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9773
9780
|
// display: 'flex',
|
|
9774
9781
|
// width: '100%',
|
|
9775
9782
|
// gap: '24px'
|
|
9776
|
-
display: '
|
|
9777
|
-
|
|
9778
|
-
|
|
9783
|
+
display: 'flex',
|
|
9784
|
+
gap: '24px',
|
|
9785
|
+
flexGrow: 1
|
|
9779
9786
|
},
|
|
9780
9787
|
card: {
|
|
9781
9788
|
padding: '24px',
|
|
9782
9789
|
display: 'flex',
|
|
9783
9790
|
justifyContent: 'space-between',
|
|
9784
9791
|
borderRadius: '16px',
|
|
9785
|
-
background: 'var(--Blue-Tertiary, #F4F9FF)'
|
|
9792
|
+
background: 'var(--Blue-Tertiary, #F4F9FF)',
|
|
9793
|
+
flexGrow: 1
|
|
9786
9794
|
},
|
|
9787
9795
|
cardDesc: {
|
|
9788
9796
|
display: 'flex',
|
|
@@ -9824,14 +9832,13 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9824
9832
|
width: '150px',
|
|
9825
9833
|
height: '150px',
|
|
9826
9834
|
borderRadius: '10px',
|
|
9827
|
-
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
|
|
9835
|
+
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9836
|
+
},
|
|
9837
|
+
infoContainer: {
|
|
9838
|
+
gap: '16px'
|
|
9831
9839
|
},
|
|
9832
|
-
infoContainer: {},
|
|
9833
9840
|
cardWrapper: {
|
|
9834
|
-
|
|
9841
|
+
flexDirection: 'column',
|
|
9835
9842
|
gap: '8px'
|
|
9836
9843
|
},
|
|
9837
9844
|
aboutInstWrapper: {
|
|
@@ -9845,6 +9852,18 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9845
9852
|
},
|
|
9846
9853
|
contentWrapper: {
|
|
9847
9854
|
gap: '8px'
|
|
9855
|
+
},
|
|
9856
|
+
card: {
|
|
9857
|
+
padding: '16px'
|
|
9858
|
+
},
|
|
9859
|
+
infoDetails: {
|
|
9860
|
+
gap: '8px'
|
|
9861
|
+
},
|
|
9862
|
+
metaInfo: {
|
|
9863
|
+
gap: '8px'
|
|
9864
|
+
},
|
|
9865
|
+
infoContent: {
|
|
9866
|
+
gap: '8px'
|
|
9848
9867
|
}
|
|
9849
9868
|
}
|
|
9850
9869
|
}));
|
|
@@ -9956,7 +9975,7 @@ function ABOUT_INSTITUTE({
|
|
|
9956
9975
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
9957
9976
|
className: classes.cardDesc
|
|
9958
9977
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
9959
|
-
|
|
9978
|
+
className: classes.highlightText
|
|
9960
9979
|
}, highlightNodeData?.students?.metadata?.value), /*#__PURE__*/React__default["default"].createElement("span", null, "Active Students")), /*#__PURE__*/React__default["default"].createElement(Icon, {
|
|
9961
9980
|
name: 'GroupProfile',
|
|
9962
9981
|
color: theme.palette.font.primary,
|