@limpiolux/ui-styles 1.0.23 → 1.0.24
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 +3 -3
- package/light.css +1 -1
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -806,7 +806,7 @@
|
|
|
806
806
|
}
|
|
807
807
|
|
|
808
808
|
.portal-toolbar {
|
|
809
|
-
@apply flex
|
|
809
|
+
@apply flex shrink-0 items-center gap-2 overflow-x-auto pb-1 md:overflow-visible md:pb-0;
|
|
810
810
|
scrollbar-width: none;
|
|
811
811
|
}
|
|
812
812
|
|
|
@@ -1935,9 +1935,9 @@
|
|
|
1935
1935
|
/* ── Portal footer ── */
|
|
1936
1936
|
|
|
1937
1937
|
.portal-footer {
|
|
1938
|
-
@apply
|
|
1938
|
+
@apply py-4 text-center text-xs tracking-wide;
|
|
1939
1939
|
color: #52525b;
|
|
1940
|
-
|
|
1940
|
+
background: linear-gradient(to bottom, transparent, rgba(9, 9, 11, 1));
|
|
1941
1941
|
}
|
|
1942
1942
|
|
|
1943
1943
|
/* ── User avatar ── */
|
package/light.css
CHANGED