diy-template-components 0.3.2 → 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 +6 -4
- package/build/index.es.js.map +1 -1
- package/build/index.js +6 -4
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -2257,12 +2257,12 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2257
2257
|
imageContainer: {
|
|
2258
2258
|
width: '50%',
|
|
2259
2259
|
position: 'relative',
|
|
2260
|
+
height: '90%',
|
|
2260
2261
|
paddingBottom: ({
|
|
2261
2262
|
isCustomWebsite
|
|
2262
2263
|
}) => isCustomWebsite ? '35%' : '',
|
|
2263
2264
|
'& img': {
|
|
2264
|
-
|
|
2265
|
-
objectFit: 'cover'
|
|
2265
|
+
// objectFit: 'cover'
|
|
2266
2266
|
}
|
|
2267
2267
|
},
|
|
2268
2268
|
subTitleHeading: {
|
|
@@ -2289,7 +2289,7 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2289
2289
|
sideBannerImage: {
|
|
2290
2290
|
width: '100%',
|
|
2291
2291
|
height: 'calc(100% - 100px)',
|
|
2292
|
-
objectFit: 'cover',
|
|
2292
|
+
// objectFit: 'cover',
|
|
2293
2293
|
objectPosition: '50% 50%'
|
|
2294
2294
|
},
|
|
2295
2295
|
absoluteButtonsBannerRight: {
|
|
@@ -2313,13 +2313,15 @@ const useSectionStyles$8 = createUseStyles(theme => ({
|
|
|
2313
2313
|
gap: '24px'
|
|
2314
2314
|
},
|
|
2315
2315
|
textContainer: {
|
|
2316
|
-
textAlign: 'center'
|
|
2316
|
+
textAlign: 'center',
|
|
2317
|
+
maxWidth: '100%'
|
|
2317
2318
|
},
|
|
2318
2319
|
linkButton: {
|
|
2319
2320
|
padding: '12px 16px'
|
|
2320
2321
|
},
|
|
2321
2322
|
imageContainer: {
|
|
2322
2323
|
height: 'undefined',
|
|
2324
|
+
width: '100%',
|
|
2323
2325
|
paddingBottom: ({
|
|
2324
2326
|
isCustomWebsite
|
|
2325
2327
|
}) => isCustomWebsite ? '100%' : 'unset'
|