@3dsource/source-ui-native 1.0.1 → 1.0.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3dsource/source-ui-native",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "dependencies": {
@@ -0,0 +1,23 @@
1
+ // @use '@angular/material' as mat;
2
+ @use './fonts';
3
+ @use './variables/index';
4
+ @use './base';
5
+ @use './typography';
6
+ @use './utils';
7
+ // Elements: styles for blocks which aren't used as components: src-list/src-list__item
8
+ @use './elements/elements';
9
+
10
+ // TODO: remove ALL connections to Angular Material
11
+ // @include mat.elevation-classes();
12
+ // @include mat.app-background();
13
+ html,
14
+ body {
15
+ width: 100%;
16
+ height: 100%;
17
+ margin: 0;
18
+ padding: 0;
19
+ }
20
+
21
+ body {
22
+ min-height: 100%;
23
+ }