diy-template-components 1.0.48 → 1.0.49

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 CHANGED
@@ -1560,7 +1560,7 @@ const useSectionStyles$9 = createUseStyles(theme => ({
1560
1560
  justifyContent: 'center',
1561
1561
  flexDirection: 'column',
1562
1562
  alignItems: 'center',
1563
- padding: '64px 128px',
1563
+ padding: '64px 128px 55px 128px',
1564
1564
  '&, & *, & *:before, & *:after': {
1565
1565
  fontFamily: theme?.typography?.fontFamily,
1566
1566
  boxSizing: 'border-box'
@@ -1717,7 +1717,9 @@ const useSectionStyles$9 = createUseStyles(theme => ({
1717
1717
  },
1718
1718
  upperContainerItem3: {
1719
1719
  width: '100%',
1720
- justifyContent: 'center'
1720
+ display: 'flex',
1721
+ flexDirection: 'column',
1722
+ alignItems: 'start'
1721
1723
  },
1722
1724
  cardHeading: {
1723
1725
  justifyContent: 'center',
@@ -4444,6 +4446,8 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
4444
4446
  height: 'max-content'
4445
4447
  },
4446
4448
  videoDetails: {
4449
+ justifyContent: 'center',
4450
+ alignItems: 'center',
4447
4451
  width: '100%',
4448
4452
  gap: '16px'
4449
4453
  },
@@ -4455,7 +4459,11 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
4455
4459
  },
4456
4460
  videoTestimonialTitle: {
4457
4461
  lineHeight: 'normal',
4458
- letterSpacing: '-1px'
4462
+ letterSpacing: '-1px',
4463
+ textAlign: 'center'
4464
+ },
4465
+ videoTestimonialHeading: {
4466
+ textAlign: 'center'
4459
4467
  }
4460
4468
  }
4461
4469
  };
@@ -5296,7 +5304,7 @@ function PhotoGallery({
5296
5304
  isExistingLink,
5297
5305
  link
5298
5306
  } = data;
5299
- if (isExistingLink && link === "courses") {
5307
+ if (isExistingLink && link === 'courses') {
5300
5308
  redirectUrl = `//${basePath}/courses`;
5301
5309
  } else if (isExistingLink && link) {
5302
5310
  // const { pageId } = navList.find((el) => el.slug === data?.link) || {};
@@ -7023,6 +7031,7 @@ const useSectionStyles = createUseStyles(theme => ({
7023
7031
  opacity: '0.5'
7024
7032
  }
7025
7033
  },
7034
+ btnContainer: {},
7026
7035
  '@media screen and (max-width: 767px)': {
7027
7036
  section: {
7028
7037
  display: 'flex',
@@ -7077,6 +7086,11 @@ const useSectionStyles = createUseStyles(theme => ({
7077
7086
  },
7078
7087
  contactContainer: {
7079
7088
  width: '97%'
7089
+ },
7090
+ btnContainer: {
7091
+ display: 'flex',
7092
+ justifyContent: 'center',
7093
+ alignItems: 'center'
7080
7094
  }
7081
7095
  }
7082
7096
  }));