diy-template-components 0.3.3 → 0.3.4
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 +5 -5
- package/build/index.es.js.map +1 -1
- package/build/index.js +5 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -2272,12 +2272,12 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2272
2272
|
imageContainer: {
|
|
2273
2273
|
width: '50%',
|
|
2274
2274
|
position: 'relative',
|
|
2275
|
+
height: '90%',
|
|
2275
2276
|
paddingBottom: ({
|
|
2276
2277
|
isCustomWebsite
|
|
2277
2278
|
}) => isCustomWebsite ? '35%' : '',
|
|
2278
2279
|
'& img': {
|
|
2279
|
-
|
|
2280
|
-
objectFit: 'cover'
|
|
2280
|
+
// objectFit: 'cover'
|
|
2281
2281
|
}
|
|
2282
2282
|
},
|
|
2283
2283
|
subTitleHeading: {
|
|
@@ -2304,7 +2304,7 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2304
2304
|
sideBannerImage: {
|
|
2305
2305
|
width: '100%',
|
|
2306
2306
|
height: 'calc(100% - 100px)',
|
|
2307
|
-
objectFit: 'cover',
|
|
2307
|
+
// objectFit: 'cover',
|
|
2308
2308
|
objectPosition: '50% 50%'
|
|
2309
2309
|
},
|
|
2310
2310
|
absoluteButtonsBannerRight: {
|
|
@@ -2329,14 +2329,14 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2329
2329
|
},
|
|
2330
2330
|
textContainer: {
|
|
2331
2331
|
textAlign: 'center',
|
|
2332
|
-
maxWidth:
|
|
2332
|
+
maxWidth: '100%'
|
|
2333
2333
|
},
|
|
2334
2334
|
linkButton: {
|
|
2335
2335
|
padding: '12px 16px'
|
|
2336
2336
|
},
|
|
2337
2337
|
imageContainer: {
|
|
2338
2338
|
height: 'undefined',
|
|
2339
|
-
width:
|
|
2339
|
+
width: '100%',
|
|
2340
2340
|
paddingBottom: ({
|
|
2341
2341
|
isCustomWebsite
|
|
2342
2342
|
}) => isCustomWebsite ? '100%' : 'unset'
|