@nonoun/native-dashboard 0.4.18 → 0.4.19
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/dist/native-dashboard.css +5 -12
- package/package.json +1 -1
|
@@ -1039,25 +1039,18 @@
|
|
|
1039
1039
|
padding: 0;
|
|
1040
1040
|
transition:
|
|
1041
1041
|
width var(--n-duration) var(--n-easing),
|
|
1042
|
-
min-width var(--n-duration) var(--n-easing)
|
|
1043
|
-
padding var(--n-duration) var(--n-easing),
|
|
1044
|
-
margin var(--n-duration) var(--n-easing);
|
|
1042
|
+
min-width var(--n-duration) var(--n-easing);
|
|
1045
1043
|
}
|
|
1046
1044
|
|
|
1047
1045
|
:where(n-dashboard-panel)[aside][open] {
|
|
1048
|
-
width:
|
|
1049
|
-
min-width:
|
|
1050
|
-
margin-inline-start: calc(var(--n-space-k) * var(--n-space));
|
|
1046
|
+
width: var(--n-aside-width);
|
|
1047
|
+
min-width: var(--n-aside-min-width);
|
|
1051
1048
|
overflow-y: auto;
|
|
1052
|
-
padding: calc(var(--n-space-k) * var(--n-space));
|
|
1053
1049
|
}
|
|
1054
1050
|
|
|
1055
|
-
/* WHY: When n-chat manages its own sub-container
|
|
1056
|
-
the layout container delegates — no own
|
|
1057
|
-
overflow: visible lets CSS anchor-positioned popovers (n-select etc.)
|
|
1058
|
-
resolve through to the top layer. */
|
|
1051
|
+
/* WHY: When n-chat manages its own sub-container scroll,
|
|
1052
|
+
the layout container delegates — no own scroll. */
|
|
1059
1053
|
:where(n-dashboard-panel)[aside][open]:has(> n-chat) {
|
|
1060
|
-
padding: 0;
|
|
1061
1054
|
overflow: visible;
|
|
1062
1055
|
}
|
|
1063
1056
|
|