@lumx/core 2.2.22 → 2.2.23

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/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "version": "yarn version-changelog ../../CHANGELOG.md && yarn changelog-verify ../../CHANGELOG.md && git add ../../CHANGELOG.md"
43
43
  },
44
44
  "sideEffects": false,
45
- "version": "2.2.22",
45
+ "version": "2.2.23",
46
46
  "devDependencies": {
47
47
  "@babel/core": "^7.8.3",
48
48
  "@babel/plugin-proposal-class-properties": "^7.8.3",
@@ -82,5 +82,5 @@
82
82
  "moment": "^2.24.0",
83
83
  "moment-range": "^4.0.2"
84
84
  },
85
- "gitHead": "a673e0d082a0782a2d4e14d752912d6203075306"
85
+ "gitHead": "51fd4513c5b083425f263464cbb1e739ab61ac18"
86
86
  }
@@ -95,6 +95,10 @@
95
95
  /* Gap
96
96
  ========================================================================== */
97
97
 
98
+ .#{$lumx-base-prefix}-flex-box--gap-tiny {
99
+ gap: $lumx-spacing-unit-tiny;
100
+ }
101
+
98
102
  .#{$lumx-base-prefix}-flex-box--gap-regular {
99
103
  gap: $lumx-spacing-unit;
100
104
  }
@@ -0,0 +1,11 @@
1
+ /* ==========================================================================
2
+ Generic Block
3
+ ========================================================================== */
4
+
5
+ .#{$lumx-base-prefix}-generic-block {
6
+ &__content {
7
+ // Prevent blocks in content from overflowing
8
+ overflow: clip;
9
+ max-width: 100%;
10
+ }
11
+ }
package/scss/lumx.scss CHANGED
@@ -29,6 +29,7 @@
29
29
  @import './components/expansion-panel/index';
30
30
  @import './components/flag/index';
31
31
  @import './components/flex-box/index';
32
+ @import './components/generic-block/index';
32
33
  @import './components/grid/index';
33
34
  @import './components/icon/index';
34
35
  @import './components/image-block/index';