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/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +13 -3
- package/fesm2022/coer-elements-components.mjs +53 -12
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/coer-elements.css +42 -1
- package/styles/index.scss +1 -0
- package/styles/layout.scss +1 -1
- package/styles/position.scss +3 -1
package/package.json
CHANGED
package/styles/coer-elements.css
CHANGED
@@ -1894,7 +1894,8 @@ aside.toast-container > * {
|
|
1894
1894
|
align-items: flex-start !important;
|
1895
1895
|
}
|
1896
1896
|
|
1897
|
-
.flex-wrap
|
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
package/styles/layout.scss
CHANGED