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.es.js
CHANGED
|
@@ -9724,7 +9724,10 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9724
9724
|
width: '240px',
|
|
9725
9725
|
height: '240px',
|
|
9726
9726
|
borderRadius: '16px',
|
|
9727
|
-
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9727
|
+
border: '1px solid var(--stroke, #D8E0F0)',
|
|
9728
|
+
display: 'flex',
|
|
9729
|
+
justifyContent: 'center',
|
|
9730
|
+
alignItems: 'center'
|
|
9728
9731
|
},
|
|
9729
9732
|
image: {
|
|
9730
9733
|
maxWidth: '100%',
|
|
@@ -9738,7 +9741,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9738
9741
|
display: 'flex',
|
|
9739
9742
|
flexDirection: 'column',
|
|
9740
9743
|
borderRadius: '16px',
|
|
9741
|
-
background: 'var(--Blue-Tertiary, #F4F9FF)'
|
|
9744
|
+
background: 'var(--Blue-Tertiary, #F4F9FF)',
|
|
9745
|
+
flexGrow: 1
|
|
9742
9746
|
},
|
|
9743
9747
|
metaInfo: {
|
|
9744
9748
|
display: 'flex',
|
|
@@ -9746,7 +9750,10 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9746
9750
|
flexWrap: 'wrap'
|
|
9747
9751
|
},
|
|
9748
9752
|
metaInfoChild: {
|
|
9749
|
-
display: 'flex'
|
|
9753
|
+
display: 'flex',
|
|
9754
|
+
justifyContent: 'center',
|
|
9755
|
+
alignItems: 'center',
|
|
9756
|
+
gap: '6px'
|
|
9750
9757
|
},
|
|
9751
9758
|
contentWrapper: {
|
|
9752
9759
|
display: 'flex',
|
|
@@ -9757,16 +9764,17 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9757
9764
|
// display: 'flex',
|
|
9758
9765
|
// width: '100%',
|
|
9759
9766
|
// gap: '24px'
|
|
9760
|
-
display: '
|
|
9761
|
-
|
|
9762
|
-
|
|
9767
|
+
display: 'flex',
|
|
9768
|
+
gap: '24px',
|
|
9769
|
+
flexGrow: 1
|
|
9763
9770
|
},
|
|
9764
9771
|
card: {
|
|
9765
9772
|
padding: '24px',
|
|
9766
9773
|
display: 'flex',
|
|
9767
9774
|
justifyContent: 'space-between',
|
|
9768
9775
|
borderRadius: '16px',
|
|
9769
|
-
background: 'var(--Blue-Tertiary, #F4F9FF)'
|
|
9776
|
+
background: 'var(--Blue-Tertiary, #F4F9FF)',
|
|
9777
|
+
flexGrow: 1
|
|
9770
9778
|
},
|
|
9771
9779
|
cardDesc: {
|
|
9772
9780
|
display: 'flex',
|
|
@@ -9808,14 +9816,13 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9808
9816
|
width: '150px',
|
|
9809
9817
|
height: '150px',
|
|
9810
9818
|
borderRadius: '10px',
|
|
9811
|
-
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9812
|
-
|
|
9813
|
-
|
|
9814
|
-
|
|
9819
|
+
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9820
|
+
},
|
|
9821
|
+
infoContainer: {
|
|
9822
|
+
gap: '16px'
|
|
9815
9823
|
},
|
|
9816
|
-
infoContainer: {},
|
|
9817
9824
|
cardWrapper: {
|
|
9818
|
-
|
|
9825
|
+
flexDirection: 'column',
|
|
9819
9826
|
gap: '8px'
|
|
9820
9827
|
},
|
|
9821
9828
|
aboutInstWrapper: {
|
|
@@ -9829,6 +9836,18 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9829
9836
|
},
|
|
9830
9837
|
contentWrapper: {
|
|
9831
9838
|
gap: '8px'
|
|
9839
|
+
},
|
|
9840
|
+
card: {
|
|
9841
|
+
padding: '16px'
|
|
9842
|
+
},
|
|
9843
|
+
infoDetails: {
|
|
9844
|
+
gap: '8px'
|
|
9845
|
+
},
|
|
9846
|
+
metaInfo: {
|
|
9847
|
+
gap: '8px'
|
|
9848
|
+
},
|
|
9849
|
+
infoContent: {
|
|
9850
|
+
gap: '8px'
|
|
9832
9851
|
}
|
|
9833
9852
|
}
|
|
9834
9853
|
}));
|
|
@@ -9940,7 +9959,7 @@ function ABOUT_INSTITUTE({
|
|
|
9940
9959
|
}, /*#__PURE__*/React.createElement("div", {
|
|
9941
9960
|
className: classes.cardDesc
|
|
9942
9961
|
}, /*#__PURE__*/React.createElement("span", {
|
|
9943
|
-
|
|
9962
|
+
className: classes.highlightText
|
|
9944
9963
|
}, highlightNodeData?.students?.metadata?.value), /*#__PURE__*/React.createElement("span", null, "Active Students")), /*#__PURE__*/React.createElement(Icon, {
|
|
9945
9964
|
name: 'GroupProfile',
|
|
9946
9965
|
color: theme.palette.font.primary,
|