diy-template-components 0.0.52 → 0.0.53
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 +7 -5
- package/build/index.es.js.map +1 -1
- package/build/index.js +7 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -72,7 +72,7 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
72
72
|
} = {}) => isFixed ? '100' : null,
|
|
73
73
|
justifyContent: 'space-between',
|
|
74
74
|
'& img': {
|
|
75
|
-
maxWidth: '100px',
|
|
75
|
+
// maxWidth: '100px',
|
|
76
76
|
maxHeight: '55px'
|
|
77
77
|
}
|
|
78
78
|
},
|
|
@@ -80,7 +80,9 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
80
80
|
height: '100px'
|
|
81
81
|
},
|
|
82
82
|
imageAnchor: {
|
|
83
|
-
textDecoration: 'none'
|
|
83
|
+
textDecoration: 'none',
|
|
84
|
+
display: 'flex',
|
|
85
|
+
alignItems: 'center'
|
|
84
86
|
},
|
|
85
87
|
optionsContainer: {
|
|
86
88
|
display: 'flex',
|
|
@@ -1106,7 +1108,7 @@ function MobileHeader({
|
|
|
1106
1108
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
1107
1109
|
name: 'Menu',
|
|
1108
1110
|
color: theme.palette.primary.main,
|
|
1109
|
-
width: '
|
|
1111
|
+
width: '24px'
|
|
1110
1112
|
})), header?.websiteLogo ? /*#__PURE__*/React.createElement("a", {
|
|
1111
1113
|
href: logoUrl,
|
|
1112
1114
|
className: classes.imageAnchor
|
|
@@ -5055,7 +5057,7 @@ const useCourseStyles = createUseStyles(theme => {
|
|
|
5055
5057
|
padding: '70px 30px'
|
|
5056
5058
|
},
|
|
5057
5059
|
singleCardContainer: {
|
|
5058
|
-
|
|
5060
|
+
gridTemplateColumns: '1fr'
|
|
5059
5061
|
},
|
|
5060
5062
|
size: {
|
|
5061
5063
|
margin: '0'
|
|
@@ -5158,7 +5160,7 @@ function CourseCard({
|
|
|
5158
5160
|
className: classes.courseCardStrikePrice
|
|
5159
5161
|
}, /*#__PURE__*/React.createElement("span", null, '₹', card?.price), ' ', discount > 0 && discount + '% OFF')), /*#__PURE__*/React.createElement("a", {
|
|
5160
5162
|
className: classes.coursesAnchorTag,
|
|
5161
|
-
href: isEdit ?
|
|
5163
|
+
href: isEdit ? card?.shareableLink : null
|
|
5162
5164
|
}, /*#__PURE__*/React.createElement("div", {
|
|
5163
5165
|
className: classes.courseCardBuyBtn
|
|
5164
5166
|
}, "Buy Now")))));
|