coer-elements 0.0.76 → 0.0.78

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": "coer-elements",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "author": "Christian Omar Escamilla Rodríguez",
5
5
  "keywords": [
6
6
  "COER",
@@ -1894,7 +1894,8 @@ aside.toast-container > * {
1894
1894
  align-items: flex-start !important;
1895
1895
  }
1896
1896
 
1897
- .flex-wrap .flex-wrap-center {
1897
+ .flex-wrap,
1898
+ .flex-wrap-center {
1898
1899
  display: flex !important;
1899
1900
  flex-wrap: wrap !important;
1900
1901
  gap: 10px !important;
@@ -1928,6 +1929,46 @@ aside.toast-container > * {
1928
1929
  animation-fill-mode: both;
1929
1930
  }
1930
1931
 
1932
+ .z-index-1 {
1933
+ z-index: 1 !important;
1934
+ }
1935
+
1936
+ .z-index-2 {
1937
+ z-index: 2 !important;
1938
+ }
1939
+
1940
+ .z-index-3 {
1941
+ z-index: 3 !important;
1942
+ }
1943
+
1944
+ .z-index-4 {
1945
+ z-index: 4 !important;
1946
+ }
1947
+
1948
+ .z-index-5 {
1949
+ z-index: 5 !important;
1950
+ }
1951
+
1952
+ .z-index-6 {
1953
+ z-index: 6 !important;
1954
+ }
1955
+
1956
+ .z-index-7 {
1957
+ z-index: 7 !important;
1958
+ }
1959
+
1960
+ .z-index-8 {
1961
+ z-index: 8 !important;
1962
+ }
1963
+
1964
+ .z-index-9 {
1965
+ z-index: 9 !important;
1966
+ }
1967
+
1968
+ .z-index-10 {
1969
+ z-index: 10 !important;
1970
+ }
1971
+
1931
1972
  * {
1932
1973
  font-family: sans-serif;
1933
1974
  letter-spacing: normal;
package/styles/index.scss CHANGED
@@ -6,6 +6,7 @@
6
6
  @use "./scroll-bar.scss";
7
7
  @use "./layout.scss";
8
8
  @use "./animations.scss";
9
+ @use "./position.scss";
9
10
 
10
11
  * {
11
12
  font-family: sans-serif;
@@ -32,7 +32,7 @@
32
32
  align-items: flex-start !important;
33
33
  }
34
34
 
35
- .flex-wrap
35
+ .flex-wrap,
36
36
  .flex-wrap-center {
37
37
  @include FlexWrap();
38
38
  align-items: center !important;
@@ -2,4 +2,6 @@
2
2
  .z-index-#{$i} {
3
3
  z-index: $i !important;
4
4
  }
5
- }
5
+ }
6
+
7
+