diy-template-components 1.0.42 → 1.0.44
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 -12
- package/build/index.es.js.map +1 -1
- package/build/index.js +14 -12
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -1887,7 +1887,7 @@ function Footer({
|
|
|
1887
1887
|
className: classes.lowerContainer
|
|
1888
1888
|
}, /*#__PURE__*/React.createElement("div", {
|
|
1889
1889
|
className: classes.bottomLeftText
|
|
1890
|
-
}, "
|
|
1890
|
+
}, "\xA9 ", new Date().getFullYear(), " All Rights Reserved"), /*#__PURE__*/React.createElement("div", {
|
|
1891
1891
|
className: classes.poweredByContainer
|
|
1892
1892
|
}, /*#__PURE__*/React.createElement("p", null, "Powered by"), /*#__PURE__*/React.createElement("a", {
|
|
1893
1893
|
title: "Powered by Classplus",
|
|
@@ -3084,12 +3084,13 @@ const useSectionStyles$6 = createUseStyles(theme => {
|
|
|
3084
3084
|
objectPosition: '50% 50%'
|
|
3085
3085
|
},
|
|
3086
3086
|
overlay: {
|
|
3087
|
+
zIndex: 1,
|
|
3087
3088
|
position: 'absolute',
|
|
3088
3089
|
top: 0,
|
|
3089
3090
|
left: 0,
|
|
3090
3091
|
width: '100%',
|
|
3091
3092
|
height: '100%',
|
|
3092
|
-
backgroundColor:
|
|
3093
|
+
backgroundColor: 'rgba(0, 0, 0, 0.4)'
|
|
3093
3094
|
},
|
|
3094
3095
|
'@media screen and (max-width: 767px)': {
|
|
3095
3096
|
heading: {
|
|
@@ -3099,10 +3100,10 @@ const useSectionStyles$6 = createUseStyles(theme => {
|
|
|
3099
3100
|
display: 'none'
|
|
3100
3101
|
},
|
|
3101
3102
|
contentContainer: {
|
|
3102
|
-
display:
|
|
3103
|
+
display: 'block'
|
|
3103
3104
|
},
|
|
3104
3105
|
textContainer: {
|
|
3105
|
-
position:
|
|
3106
|
+
position: 'absolute',
|
|
3106
3107
|
padding: '20px 20px',
|
|
3107
3108
|
height: '100%',
|
|
3108
3109
|
width: '100%',
|
|
@@ -3147,7 +3148,7 @@ const Section$3 = ({
|
|
|
3147
3148
|
isCustomWebsite,
|
|
3148
3149
|
countryCode
|
|
3149
3150
|
} = useContext(PageContext);
|
|
3150
|
-
const hasContent = Boolean(nodeData.cardHeading.metadata.value || nodeData.title.metadata.
|
|
3151
|
+
const hasContent = Boolean(nodeData.cardHeading.metadata.value || nodeData.title.metadata.valu || nodeData.description.metadata.value);
|
|
3151
3152
|
const classes = useSectionStyles$6({
|
|
3152
3153
|
wordBreakValue: wordBreakValue(countryCode),
|
|
3153
3154
|
imageUrl: nodeData.image.metadata.value,
|
|
@@ -4370,7 +4371,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4370
4371
|
marginBottom: '8px'
|
|
4371
4372
|
},
|
|
4372
4373
|
videoTestimonialTitle: {
|
|
4373
|
-
fontSize: theme.typography.fontSize.
|
|
4374
|
+
fontSize: theme.typography.fontSize.h2,
|
|
4374
4375
|
// lineHeight: '71px',
|
|
4375
4376
|
letterSpacing: '-3px',
|
|
4376
4377
|
fontWeight: theme.typography.fontWeight.bold,
|
|
@@ -4380,15 +4381,16 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4380
4381
|
},
|
|
4381
4382
|
videoCarousel: {
|
|
4382
4383
|
display: 'flex',
|
|
4383
|
-
alignItems: 'center',
|
|
4384
4384
|
justifyContent: 'flex-start',
|
|
4385
|
-
gap:
|
|
4385
|
+
gap: '40px'
|
|
4386
4386
|
},
|
|
4387
4387
|
iframeSuperContainer: {
|
|
4388
4388
|
height: '100%',
|
|
4389
4389
|
width: '100%',
|
|
4390
4390
|
display: 'flex',
|
|
4391
|
-
alignItems: 'center'
|
|
4391
|
+
alignItems: 'center',
|
|
4392
|
+
marginTop: '16px',
|
|
4393
|
+
borderRadius: '8px'
|
|
4392
4394
|
},
|
|
4393
4395
|
iframeContainer: {
|
|
4394
4396
|
width: '100%',
|
|
@@ -4418,13 +4420,13 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4418
4420
|
fontWeight: theme.typography.fontWeight.bold
|
|
4419
4421
|
},
|
|
4420
4422
|
videoDetailsContent: {
|
|
4421
|
-
fontSize: theme.typography.fontSize.
|
|
4423
|
+
fontSize: theme.typography.fontSize.body,
|
|
4422
4424
|
lineHeight: '24px',
|
|
4423
4425
|
wordBreak: 'break-word',
|
|
4424
4426
|
color: theme.palette.font.primary
|
|
4425
4427
|
},
|
|
4426
4428
|
videoDetailsSubContent: {
|
|
4427
|
-
fontSize: theme.typography.fontSize.
|
|
4429
|
+
fontSize: theme.typography.fontSize.h6,
|
|
4428
4430
|
lineHeight: '24px',
|
|
4429
4431
|
margin: '0',
|
|
4430
4432
|
color: theme.palette.font.primary,
|
|
@@ -5816,7 +5818,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5816
5818
|
textDecoration: 'none !important'
|
|
5817
5819
|
},
|
|
5818
5820
|
courseCardStrikePrice: {
|
|
5819
|
-
fontSize: '
|
|
5821
|
+
fontSize: '14px',
|
|
5820
5822
|
fontWeight: '600',
|
|
5821
5823
|
lineHeight: '13px',
|
|
5822
5824
|
color: '#FE9B0E',
|