diy-template-components 1.0.25 → 1.0.26
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 +8 -2
- package/build/index.es.js.map +1 -1
- package/build/index.js +8 -2
- 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: {
|