@limpiolux/ui-styles 1.1.2 → 1.1.3
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.css +17 -2
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -1958,9 +1958,24 @@
|
|
|
1958
1958
|
/* ── Portal footer ── */
|
|
1959
1959
|
|
|
1960
1960
|
.portal-footer {
|
|
1961
|
-
@apply
|
|
1961
|
+
@apply pb-4 pt-12 text-center text-xs tracking-wide;
|
|
1962
1962
|
color: #52525b;
|
|
1963
|
-
background: linear-gradient(to bottom, transparent, rgba(9, 9, 11,
|
|
1963
|
+
background: linear-gradient(to bottom, transparent, rgba(9, 9, 11, 0.98) 55%);
|
|
1964
|
+
position: fixed;
|
|
1965
|
+
bottom: 0;
|
|
1966
|
+
left: 0;
|
|
1967
|
+
right: 0;
|
|
1968
|
+
z-index: 10;
|
|
1969
|
+
pointer-events: none;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
@media (min-width: 1024px) {
|
|
1973
|
+
.portal-footer {
|
|
1974
|
+
@apply py-4;
|
|
1975
|
+
position: static;
|
|
1976
|
+
pointer-events: auto;
|
|
1977
|
+
background: none;
|
|
1978
|
+
}
|
|
1964
1979
|
}
|
|
1965
1980
|
|
|
1966
1981
|
/* ── User avatar ── */
|