kiso 0.6.0.pre → 0.6.1.pre
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.
- checksums.yaml +4 -4
- data/lib/kiso/themes/dashboard.rb +5 -3
- data/lib/kiso/themes/stats_card.rb +1 -1
- data/lib/kiso/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b28c57b532dc53dad377cca677637615db58881e3109d6a6a5ecbbd1cce5b02e
|
|
4
|
+
data.tar.gz: eca25e39e3e60d918dac9df9c4bbd2b696c558649bb48d8bc74f156e5171f56b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab5fd9a21f185c579e8fd745b5709915e5e4aa30c2fcc38126c616ecbaa08495dce298997bb247ccc077205f84d82f2b33bb8cff764bfc7ce6a33527396dff8b
|
|
7
|
+
data.tar.gz: d83b4e694f3559f20c0da252dbb631224fcd23a5514595a8d57f9631dd68a65f79d6377e0594afe4c07968df9330c906b444f9e83a882b82fcf540fbcc364158
|
|
@@ -42,13 +42,15 @@ module Kiso
|
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
# Top section of the sidebar (e.g., logo, search).
|
|
45
|
+
# Fixed height matches the topbar; items-center vertically centers content.
|
|
45
46
|
DashboardSidebarHeader = ClassVariants.build(
|
|
46
|
-
base: "shrink-0 flex
|
|
47
|
+
base: "shrink-0 flex items-center gap-2 p-2"
|
|
47
48
|
)
|
|
48
49
|
|
|
49
|
-
# Bottom section of the sidebar (e.g., user menu).
|
|
50
|
+
# Bottom section of the sidebar (e.g., user menu, action buttons).
|
|
51
|
+
# Horizontal layout for the common "avatar + action button" pattern.
|
|
50
52
|
DashboardSidebarFooter = ClassVariants.build(
|
|
51
|
-
base: "shrink-0 flex
|
|
53
|
+
base: "shrink-0 flex items-center gap-2 p-2"
|
|
52
54
|
)
|
|
53
55
|
|
|
54
56
|
# Mobile-only button to open/close the sidebar overlay.
|
|
@@ -15,7 +15,7 @@ module Kiso
|
|
|
15
15
|
#
|
|
16
16
|
# Related: {StatsGrid} for responsive grid layout of multiple stats cards.
|
|
17
17
|
StatsCard = ClassVariants.build(
|
|
18
|
-
base: "flex flex-col gap-2 rounded-xl p-4 text-foreground",
|
|
18
|
+
base: "flex flex-col gap-2 rounded-xl p-4 text-foreground min-w-0 overflow-hidden",
|
|
19
19
|
variants: {
|
|
20
20
|
variant: {
|
|
21
21
|
outline: "bg-background ring ring-inset ring-border shadow-sm",
|
data/lib/kiso/version.rb
CHANGED