diy-template-components 0.2.56 → 0.2.57

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
@@ -2,15 +2,15 @@
2
2
 
3
3
 
4
4
 
5
- function ___$insertStyle(css) {
6
- if (!css || typeof window === 'undefined') {
7
- return;
8
- }
9
- const style = document.createElement('style');
10
- style.setAttribute('type', 'text/css');
11
- style.innerHTML = css;
12
- document.head.appendChild(style);
13
- return css;
5
+ function ___$insertStyle(css) {
6
+ if (!css || !window) {
7
+ return;
8
+ }
9
+ const style = document.createElement('style');
10
+ style.setAttribute('type', 'text/css');
11
+ style.innerHTML = css;
12
+ document.head.appendChild(style);
13
+ return css;
14
14
  }
15
15
 
16
16
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -1614,7 +1614,8 @@ const useSectionStyles$9 = createUseStyles(theme => ({
1614
1614
  footerLogoImage: {
1615
1615
  objectFit: ({
1616
1616
  isCustomWebsite
1617
- }) => isCustomWebsite ? 'contain' : ''
1617
+ }) => isCustomWebsite ? 'contain' : '',
1618
+ maxHeight: '55px'
1618
1619
  },
1619
1620
  '@media screen and (max-width: 767px)': {
1620
1621
  section: {