@limpiolux/ui-styles 1.0.26 → 1.0.28
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/base.css +2 -5
- package/components.css +2 -2
- package/package.json +1 -1
package/base.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Design tokens (CSS custom properties), font import, body defaults, selection.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@
|
|
6
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
7
7
|
|
|
8
8
|
@layer base {
|
|
9
9
|
:root {
|
|
@@ -46,10 +46,7 @@
|
|
|
46
46
|
min-height: 100vh;
|
|
47
47
|
-webkit-font-smoothing: antialiased;
|
|
48
48
|
-moz-osx-font-smoothing: grayscale;
|
|
49
|
-
transition:
|
|
50
|
-
background-color 420ms ease,
|
|
51
|
-
color 420ms ease,
|
|
52
|
-
background-image 420ms ease;
|
|
49
|
+
transition: opacity 420ms ease;
|
|
53
50
|
}
|
|
54
51
|
|
|
55
52
|
::selection {
|
package/components.css
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.theme-icon-button {
|
|
48
|
-
@apply inline-flex h-9 w-9 items-center justify-center rounded-xl border border-white/10 bg-white/5 text-zinc-200;
|
|
48
|
+
@apply inline-flex h-9 w-9 shrink-0 items-center justify-center rounded-xl border border-white/10 bg-white/5 text-zinc-200;
|
|
49
49
|
transition: transform 220ms ease, opacity 220ms ease;
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -798,7 +798,7 @@
|
|
|
798
798
|
}
|
|
799
799
|
|
|
800
800
|
.portal-toolbar-icon {
|
|
801
|
-
@apply inline-flex h-9 w-9 items-center justify-center rounded-xl border border-white/10 bg-white/5 text-zinc-200;
|
|
801
|
+
@apply inline-flex h-9 w-9 shrink-0 items-center justify-center rounded-xl border border-white/10 bg-white/5 text-zinc-200;
|
|
802
802
|
transition: transform 220ms ease, opacity 220ms ease;
|
|
803
803
|
}
|
|
804
804
|
|