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.js CHANGED
@@ -9781,7 +9781,8 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
9781
9781
  // width: '100%',
9782
9782
  // gap: '24px'
9783
9783
  display: 'flex',
9784
- gap: '24px'
9784
+ gap: '24px',
9785
+ flexGrow: 1
9785
9786
  },
9786
9787
  card: {
9787
9788
  padding: '24px',
@@ -9833,7 +9834,9 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
9833
9834
  borderRadius: '10px',
9834
9835
  border: '1px solid var(--stroke, #D8E0F0)'
9835
9836
  },
9836
- infoContainer: {},
9837
+ infoContainer: {
9838
+ gap: '16px'
9839
+ },
9837
9840
  cardWrapper: {
9838
9841
  flexDirection: 'column',
9839
9842
  gap: '8px'
@@ -9852,6 +9855,15 @@ const useAboutInstituteStyles = createUseStyles(theme => ({
9852
9855
  },
9853
9856
  card: {
9854
9857
  padding: '16px'
9858
+ },
9859
+ infoDetails: {
9860
+ gap: '8px'
9861
+ },
9862
+ metaInfo: {
9863
+ gap: '8px'
9864
+ },
9865
+ infoContent: {
9866
+ gap: '8px'
9855
9867
  }
9856
9868
  }
9857
9869
  }));