@pushengineering/umg-web-components 3.2.8 → 3.2.9

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.
@@ -25,7 +25,7 @@ let Page = class Page extends LitElement {
25
25
  if (this.spacing) {
26
26
  styles = {
27
27
  ...styles,
28
- '--umg-space-section-margin-bottom': this.spacing / 16 + 'rem',
28
+ '--umg-space-section-bottom-margin': this.spacing / 16 + 'rem',
29
29
  };
30
30
  }
31
31
  return styles;
@@ -4,16 +4,16 @@ const section = css `
4
4
  .section {
5
5
  padding-top: var(--umg-space-section-top-padding, 0);
6
6
  padding-bottom: var(--umg-space-section-bottom-padding, 0);
7
- margin-top: var(--umg-space-section-margin-top, 0);
8
- margin-bottom: var(--umg-space-section-margin-bottom, 0);
7
+ margin-top: var(--umg-space-section-top-margin, 0);
8
+ margin-bottom: var(--umg-space-section-bottom-margin, 0);
9
9
  }
10
10
 
11
11
  @media only screen and (max-width: 48rem) {
12
12
  .section {
13
13
  padding-top: var(--umg-space-section-top-padding-mobile, 0);
14
14
  padding-bottom: var(--umg-space-section-bottom-padding-mobile, 0);
15
- margin-top: var(--umg-space-section-margin-top-mobile, 0);
16
- margin-bottom: var(--umg-space-section-margin-bottom,-mobile 0);
15
+ margin-top: var(--umg-space-section-top-margin-mobile, 0);
16
+ margin-bottom: var(--umg-space-section-bottom-margin-mobile, 0);
17
17
  }
18
18
  }
19
19
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushengineering/umg-web-components",
3
- "version": "3.2.8",
3
+ "version": "3.2.9",
4
4
  "type": "module",
5
5
  "module": "dist/components/index.js",
6
6
  "types": "dist/components/index.d.ts",