diy-template-components 0.3.4 → 0.3.6

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.js CHANGED
@@ -113,7 +113,7 @@ const useSectionStyles$a = createUseStyles(theme => ({
113
113
  cursor: 'default',
114
114
  position: 'relative',
115
115
  height: '55px',
116
- width: 'inherit'
116
+ width: '100%'
117
117
  },
118
118
  optionsContainer: {
119
119
  display: 'flex',
@@ -163,7 +163,10 @@ const useSectionStyles$a = createUseStyles(theme => ({
163
163
  imageDivImageNext: {
164
164
  objectFit: ({
165
165
  isCustomWebsite
166
- } = {}) => isCustomWebsite ? 'contain' : ''
166
+ } = {}) => isCustomWebsite ? 'contain' : '',
167
+ objectPosition: ({
168
+ isCustomWebsite
169
+ } = {}) => isCustomWebsite ? 'left' : ''
167
170
  },
168
171
  imageAnchorMobile: {
169
172
  pointerEvents: 'auto',
@@ -2272,12 +2275,12 @@ const useSectionStyles$8 = createUseStyles(theme => ({
2272
2275
  imageContainer: {
2273
2276
  width: '50%',
2274
2277
  position: 'relative',
2275
- height: '90%',
2276
2278
  paddingBottom: ({
2277
2279
  isCustomWebsite
2278
2280
  }) => isCustomWebsite ? '35%' : '',
2279
2281
  '& img': {
2280
- // objectFit: 'cover'
2282
+ height: '520px',
2283
+ objectFit: 'cover'
2281
2284
  }
2282
2285
  },
2283
2286
  subTitleHeading: {
@@ -2304,7 +2307,7 @@ const useSectionStyles$8 = createUseStyles(theme => ({
2304
2307
  sideBannerImage: {
2305
2308
  width: '100%',
2306
2309
  height: 'calc(100% - 100px)',
2307
- // objectFit: 'cover',
2310
+ objectFit: 'cover',
2308
2311
  objectPosition: '50% 50%'
2309
2312
  },
2310
2313
  absoluteButtonsBannerRight: {