diy-template-components 2.0.27 → 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 +14 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +14 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -9765,7 +9765,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9765
9765
|
// width: '100%',
|
|
9766
9766
|
// gap: '24px'
|
|
9767
9767
|
display: 'flex',
|
|
9768
|
-
gap: '24px'
|
|
9768
|
+
gap: '24px',
|
|
9769
|
+
flexGrow: 1
|
|
9769
9770
|
},
|
|
9770
9771
|
card: {
|
|
9771
9772
|
padding: '24px',
|
|
@@ -9817,7 +9818,9 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9817
9818
|
borderRadius: '10px',
|
|
9818
9819
|
border: '1px solid var(--stroke, #D8E0F0)'
|
|
9819
9820
|
},
|
|
9820
|
-
infoContainer: {
|
|
9821
|
+
infoContainer: {
|
|
9822
|
+
gap: '16px'
|
|
9823
|
+
},
|
|
9821
9824
|
cardWrapper: {
|
|
9822
9825
|
flexDirection: 'column',
|
|
9823
9826
|
gap: '8px'
|
|
@@ -9836,6 +9839,15 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
|
|
|
9836
9839
|
},
|
|
9837
9840
|
card: {
|
|
9838
9841
|
padding: '16px'
|
|
9842
|
+
},
|
|
9843
|
+
infoDetails: {
|
|
9844
|
+
gap: '8px'
|
|
9845
|
+
},
|
|
9846
|
+
metaInfo: {
|
|
9847
|
+
gap: '8px'
|
|
9848
|
+
},
|
|
9849
|
+
infoContent: {
|
|
9850
|
+
gap: '8px'
|
|
9839
9851
|
}
|
|
9840
9852
|
}
|
|
9841
9853
|
}));
|