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 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: {