diy-template-components 0.0.64 → 0.0.67
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 +9 -20
- package/build/index.es.js.map +1 -1
- package/build/index.js +9 -20
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -144,7 +144,8 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
144
144
|
fontWeight: '500',
|
|
145
145
|
fontSize: '16px',
|
|
146
146
|
lineHeight: '24px',
|
|
147
|
-
color: '#3C4852'
|
|
147
|
+
color: '#3C4852',
|
|
148
|
+
marginLeft: "8px"
|
|
148
149
|
},
|
|
149
150
|
mobileContent: {
|
|
150
151
|
display: 'flex',
|
|
@@ -232,7 +233,8 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
232
233
|
'-webkit-box-orient': 'vertical',
|
|
233
234
|
overflow: 'hidden',
|
|
234
235
|
textOverflow: 'ellipsis',
|
|
235
|
-
overflowWrap: 'anywhere'
|
|
236
|
+
overflowWrap: 'anywhere',
|
|
237
|
+
marginLeft: "0px"
|
|
236
238
|
}
|
|
237
239
|
}));
|
|
238
240
|
|
|
@@ -1128,9 +1130,11 @@ function DesktopHeader({
|
|
|
1128
1130
|
className: classes.imageAnchor
|
|
1129
1131
|
}, /*#__PURE__*/React.createElement("img", {
|
|
1130
1132
|
src: header?.websiteLogo
|
|
1131
|
-
})) : null, isTutorWebsite && header?.appName ? /*#__PURE__*/React.createElement("
|
|
1133
|
+
})) : null, isTutorWebsite && header?.appName ? /*#__PURE__*/React.createElement("a", {
|
|
1134
|
+
href: logoUrl
|
|
1135
|
+
}, /*#__PURE__*/React.createElement("p", {
|
|
1132
1136
|
className: classes.appNameClass
|
|
1133
|
-
}, " ", header?.appName) : null), /*#__PURE__*/React.createElement(OptionList, {
|
|
1137
|
+
}, " ", header?.appName)) : null), /*#__PURE__*/React.createElement(OptionList, {
|
|
1134
1138
|
optionsData: optionDataFn(),
|
|
1135
1139
|
navDataCount: navData?.length,
|
|
1136
1140
|
headerData: header,
|
|
@@ -1247,22 +1251,7 @@ function MobileHeader({
|
|
|
1247
1251
|
rel: null
|
|
1248
1252
|
});
|
|
1249
1253
|
} else {
|
|
1250
|
-
|
|
1251
|
-
downloadLink = /*#__PURE__*/React.createElement(Button, {
|
|
1252
|
-
data: {
|
|
1253
|
-
link: header?.appLink,
|
|
1254
|
-
isLink: 1,
|
|
1255
|
-
value: 'Download App',
|
|
1256
|
-
isExternal: 1
|
|
1257
|
-
},
|
|
1258
|
-
type: 'primary',
|
|
1259
|
-
size: 'small',
|
|
1260
|
-
target: 'blank',
|
|
1261
|
-
rel: null
|
|
1262
|
-
});
|
|
1263
|
-
} else {
|
|
1264
|
-
downloadLink = null;
|
|
1265
|
-
}
|
|
1254
|
+
downloadLink = null;
|
|
1266
1255
|
}
|
|
1267
1256
|
} else {
|
|
1268
1257
|
if (header?.appLink) {
|