diy-template-components 0.2.8 → 0.2.9
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 +15 -8
- package/build/index.es.js.map +1 -1
- package/build/index.js +15 -8
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -7935,8 +7935,8 @@ const useEmailStyles = createUseStyles(theme => ({
|
|
|
7935
7935
|
borderSpacing: '0'
|
|
7936
7936
|
},
|
|
7937
7937
|
logoimg: {
|
|
7938
|
-
width: '
|
|
7939
|
-
height: '
|
|
7938
|
+
width: '78px',
|
|
7939
|
+
height: '48px'
|
|
7940
7940
|
/* margin: 18px 0px; */
|
|
7941
7941
|
},
|
|
7942
7942
|
|
|
@@ -8030,8 +8030,12 @@ function Section({
|
|
|
8030
8030
|
}
|
|
8031
8031
|
}, header?.components[0]?.metadata?.image?.length ? /*#__PURE__*/React.createElement("img", {
|
|
8032
8032
|
src: header?.components[0]?.metadata?.image,
|
|
8033
|
-
alt: ""
|
|
8034
|
-
className
|
|
8033
|
+
alt: ""
|
|
8034
|
+
// className={classes.logoimg}
|
|
8035
|
+
,
|
|
8036
|
+
style: {
|
|
8037
|
+
width: '60px'
|
|
8038
|
+
}
|
|
8035
8039
|
}) : /*#__PURE__*/React.createElement("div", {
|
|
8036
8040
|
style: {
|
|
8037
8041
|
display: 'flex',
|
|
@@ -8127,7 +8131,8 @@ function Section({
|
|
|
8127
8131
|
src: landing?.components[0]?.metadata?.image,
|
|
8128
8132
|
alt: "",
|
|
8129
8133
|
style: {
|
|
8130
|
-
width: '100%'
|
|
8134
|
+
width: '100%',
|
|
8135
|
+
borderRadius: '10px'
|
|
8131
8136
|
}
|
|
8132
8137
|
}) : /*#__PURE__*/React.createElement("div", {
|
|
8133
8138
|
style: {
|
|
@@ -8137,7 +8142,8 @@ function Section({
|
|
|
8137
8142
|
display: 'flex',
|
|
8138
8143
|
alignItems: 'center',
|
|
8139
8144
|
justifyContent: 'center',
|
|
8140
|
-
fontStyle: 'italic'
|
|
8145
|
+
fontStyle: 'italic',
|
|
8146
|
+
borderRadius: '10px'
|
|
8141
8147
|
}
|
|
8142
8148
|
}, "Thumbnail Image"), /*#__PURE__*/React.createElement("p", {
|
|
8143
8149
|
style: {
|
|
@@ -8154,7 +8160,7 @@ function Section({
|
|
|
8154
8160
|
ref: landing?.components[1]?.refSetter
|
|
8155
8161
|
}, landing?.components[1]?.metadata?.text), /*#__PURE__*/React.createElement("p", {
|
|
8156
8162
|
style: {
|
|
8157
|
-
background: '#
|
|
8163
|
+
background: '#009AE0',
|
|
8158
8164
|
borderRadius: '7.18333px',
|
|
8159
8165
|
color: 'white',
|
|
8160
8166
|
textDecoration: 'none',
|
|
@@ -8319,7 +8325,8 @@ function EmailDripMarket({
|
|
|
8319
8325
|
const emailRef = useRef(null);
|
|
8320
8326
|
return /*#__PURE__*/React.createElement("section", {
|
|
8321
8327
|
style: {
|
|
8322
|
-
width: '95%'
|
|
8328
|
+
width: '95%',
|
|
8329
|
+
paddingBottom: '30%'
|
|
8323
8330
|
}
|
|
8324
8331
|
}, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Section, {
|
|
8325
8332
|
sectionRef: emailRef,
|