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.js CHANGED
@@ -1576,7 +1576,7 @@ const useSectionStyles$9 = createUseStyles(theme => ({
1576
1576
  justifyContent: 'center',
1577
1577
  flexDirection: 'column',
1578
1578
  alignItems: 'center',
1579
- padding: '64px 128px',
1579
+ padding: '64px 128px 55px 128px',
1580
1580
  '&, & *, & *:before, & *:after': {
1581
1581
  fontFamily: theme?.typography?.fontFamily,
1582
1582
  boxSizing: 'border-box'
@@ -1733,7 +1733,9 @@ const useSectionStyles$9 = createUseStyles(theme => ({
1733
1733
  },
1734
1734
  upperContainerItem3: {
1735
1735
  width: '100%',
1736
- justifyContent: 'center'
1736
+ display: 'flex',
1737
+ flexDirection: 'column',
1738
+ alignItems: 'start'
1737
1739
  },
1738
1740
  cardHeading: {
1739
1741
  justifyContent: 'center',
@@ -4460,6 +4462,8 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
4460
4462
  height: 'max-content'
4461
4463
  },
4462
4464
  videoDetails: {
4465
+ justifyContent: 'center',
4466
+ alignItems: 'center',
4463
4467
  width: '100%',
4464
4468
  gap: '16px'
4465
4469
  },
@@ -4471,7 +4475,11 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
4471
4475
  },
4472
4476
  videoTestimonialTitle: {
4473
4477
  lineHeight: 'normal',
4474
- letterSpacing: '-1px'
4478
+ letterSpacing: '-1px',
4479
+ textAlign: 'center'
4480
+ },
4481
+ videoTestimonialHeading: {
4482
+ textAlign: 'center'
4475
4483
  }
4476
4484
  }
4477
4485
  };
@@ -5312,7 +5320,7 @@ function PhotoGallery({
5312
5320
  isExistingLink,
5313
5321
  link
5314
5322
  } = data;
5315
- if (isExistingLink && link === "courses") {
5323
+ if (isExistingLink && link === 'courses') {
5316
5324
  redirectUrl = `//${basePath}/courses`;
5317
5325
  } else if (isExistingLink && link) {
5318
5326
  // const { pageId } = navList.find((el) => el.slug === data?.link) || {};
@@ -7039,6 +7047,7 @@ const useSectionStyles = createUseStyles(theme => ({
7039
7047
  opacity: '0.5'
7040
7048
  }
7041
7049
  },
7050
+ btnContainer: {},
7042
7051
  '@media screen and (max-width: 767px)': {
7043
7052
  section: {
7044
7053
  display: 'flex',
@@ -7093,6 +7102,11 @@ const useSectionStyles = createUseStyles(theme => ({
7093
7102
  },
7094
7103
  contactContainer: {
7095
7104
  width: '97%'
7105
+ },
7106
+ btnContainer: {
7107
+ display: 'flex',
7108
+ justifyContent: 'center',
7109
+ alignItems: 'center'
7096
7110
  }
7097
7111
  }
7098
7112
  }));