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.js
CHANGED
|
@@ -114,7 +114,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
114
114
|
pointerEvents: 'auto',
|
|
115
115
|
cursor: 'default',
|
|
116
116
|
position: 'relative',
|
|
117
|
-
height: '55px'
|
|
117
|
+
height: '55px',
|
|
118
|
+
width: ({
|
|
119
|
+
isCustomWebsite
|
|
120
|
+
} = {}) => isCustomWebsite ? '100%' : ''
|
|
118
121
|
},
|
|
119
122
|
optionsContainer: {
|
|
120
123
|
display: 'flex',
|
|
@@ -157,7 +160,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
157
160
|
display: 'flex',
|
|
158
161
|
position: 'relative',
|
|
159
162
|
maxHeight: '55px',
|
|
160
|
-
alignItems: 'center'
|
|
163
|
+
alignItems: 'center',
|
|
164
|
+
width: ({
|
|
165
|
+
isCustomWebsite
|
|
166
|
+
} = {}) => isCustomWebsite ? '30%' : ''
|
|
161
167
|
},
|
|
162
168
|
imageDivImageMobile: {},
|
|
163
169
|
imageDivImageNext: {
|
|
@@ -171,7 +177,9 @@ const useSectionStyles$a = createUseStyles(theme => ({
|
|
|
171
177
|
imageAnchorMobile: {
|
|
172
178
|
pointerEvents: 'auto',
|
|
173
179
|
cursor: 'default',
|
|
174
|
-
|
|
180
|
+
width: ({
|
|
181
|
+
isCustomWebsite
|
|
182
|
+
} = {}) => isCustomWebsite ? '100%' : '',
|
|
175
183
|
maxWidth: '85px',
|
|
176
184
|
cursor: 'default',
|
|
177
185
|
height: '46px',
|
|
@@ -4447,7 +4455,7 @@ const useVideoTestimonialStyles = createUseStyles(theme => {
|
|
|
4447
4455
|
lineHeight: 'normal'
|
|
4448
4456
|
},
|
|
4449
4457
|
videoTestimonialTitle: {
|
|
4450
|
-
lineHeight: '
|
|
4458
|
+
lineHeight: 'normal',
|
|
4451
4459
|
letterSpacing: '-1px'
|
|
4452
4460
|
}
|
|
4453
4461
|
}
|