diy-template-components 1.0.28 → 1.0.29
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 +12 -4
- package/build/index.es.js.map +1 -1
- package/build/index.js +12 -4
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -98,7 +98,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
98
98
|
pointerEvents: 'auto',
|
|
99
99
|
cursor: 'default',
|
|
100
100
|
position: 'relative',
|
|
101
|
-
height: '55px'
|
|
101
|
+
height: '55px',
|
|
102
|
+
width: ({
|
|
103
|
+
isCustomWebsite
|
|
104
|
+
} = {}) => isCustomWebsite ? '100%' : ''
|
|
102
105
|
},
|
|
103
106
|
optionsContainer: {
|
|
104
107
|
display: 'flex',
|
|
@@ -141,7 +144,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
141
144
|
display: 'flex',
|
|
142
145
|
position: 'relative',
|
|
143
146
|
maxHeight: '55px',
|
|
144
|
-
alignItems: 'center'
|
|
147
|
+
alignItems: 'center',
|
|
148
|
+
width: ({
|
|
149
|
+
isCustomWebsite
|
|
150
|
+
} = {}) => isCustomWebsite ? '30%' : ''
|
|
145
151
|
},
|
|
146
152
|
imageDivImageMobile: {},
|
|
147
153
|
imageDivImageNext: {
|
|
@@ -155,7 +161,9 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
155
161
|
imageAnchorMobile: {
|
|
156
162
|
pointerEvents: 'auto',
|
|
157
163
|
cursor: 'default',
|
|
158
|
-
|
|
164
|
+
width: ({
|
|
165
|
+
isCustomWebsite
|
|
166
|
+
} = {}) => isCustomWebsite ? '100%' : '',
|
|
159
167
|
maxWidth: '85px',
|
|
160
168
|
cursor: 'default',
|
|
161
169
|
height: '46px',
|
|
@@ -4431,7 +4439,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4431
4439
|
lineHeight: 'normal'
|
|
4432
4440
|
},
|
|
4433
4441
|
videoTestimonialTitle: {
|
|
4434
|
-
lineHeight: '
|
|
4442
|
+
lineHeight: 'normal',
|
|
4435
4443
|
letterSpacing: '-1px'
|
|
4436
4444
|
}
|
|
4437
4445
|
}
|