@lukfel/ng-scaffold 21.1.34 → 21.1.35

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": "@lukfel/ng-scaffold",
3
- "version": "21.1.34",
3
+ "version": "21.1.35",
4
4
  "description": "This Angular library provides a basic UI scaffold and services for modern web and mobile apps",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -49,25 +49,25 @@ $init: 0;
49
49
  .flex-row-nowrap { display: flex; flex-direction: row; flex-wrap: nowrap; }
50
50
  .flex-col { display: flex; flex-direction: column; flex-wrap: wrap; }
51
51
 
52
- .justify-start { justify-content: flex-start; }
53
- .justify-center { justify-content: center; }
54
- .justify-end { justify-content: flex-end; }
55
- .justify-between { justify-content: space-between; }
56
- .justify-around { justify-content: space-around; }
57
- .justify-evenly { justify-content: space-evenly; }
58
-
59
- .align-start { align-items: flex-start; }
60
- .align-center { align-items: center; }
61
- .align-end { align-items: flex-end; }
62
- .align-stretch { align-items: stretch; }
63
- .align-baseline { align-items: baseline; }
64
-
65
- .align-self-start { align-self: flex-start; }
66
- .align-self-center { align-self: center; }
67
- .align-self-end { align-self: flex-end; }
52
+ .justify-start { justify-content: flex-start !important; }
53
+ .justify-center { justify-content: center !important; }
54
+ .justify-end { justify-content: flex-end !important; }
55
+ .justify-between { justify-content: space-between !important; }
56
+ .justify-around { justify-content: space-around !important; }
57
+ .justify-evenly { justify-content: space-evenly !important; }
58
+
59
+ .align-start { align-items: flex-start !important; }
60
+ .align-center { align-items: center !important; }
61
+ .align-end { align-items: flex-end !important; }
62
+ .align-stretch { align-items: stretch !important; }
63
+ .align-baseline { align-items: baseline !important; }
64
+
65
+ .align-self-start { align-self: flex-start !important; }
66
+ .align-self-center { align-self: center !important; }
67
+ .align-self-end { align-self: flex-end !important; }
68
68
 
69
69
  .flex-1 { flex: 1 1 0%; }
70
- .flex-auto { flex: 1 0 auto; }
70
+ .flex-auto { flex: 1 1 auto; }
71
71
  .flex-none { flex: none; }
72
72
 
73
73
  // Position
@@ -101,8 +101,9 @@ $init: 0;
101
101
  .mh-100 { min-height: 100%; }
102
102
 
103
103
  // Overflow
104
- .overflow-hidden { overflow: hidden; }
105
- .overflow-auto { overflow: auto; }
104
+ .overflow-hidden { overflow: hidden !important; }
105
+ .overflow-auto { overflow: auto !important; }
106
+ .overflow-unset { overflow: unset !important; }
106
107
 
107
108
  // Text
108
109
  .text-center { text-align: center; }