@nonoun/native-dashboard 0.4.17 → 0.4.18
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 -11
- package/package.json +1 -1
|
@@ -230,29 +230,23 @@
|
|
|
230
230
|
min-width: 0;
|
|
231
231
|
max-width: 480px;
|
|
232
232
|
overflow: clip;
|
|
233
|
-
padding: 0;
|
|
234
233
|
flex-shrink: 0;
|
|
235
234
|
background: var(--n-ground);
|
|
236
235
|
border-radius: var(--n-radius);
|
|
237
236
|
transition:
|
|
238
237
|
width var(--n-duration) var(--n-easing),
|
|
239
|
-
min-width var(--n-duration) var(--n-easing)
|
|
240
|
-
padding var(--n-duration) var(--n-easing),
|
|
241
|
-
margin var(--n-duration) var(--n-easing);
|
|
238
|
+
min-width var(--n-duration) var(--n-easing);
|
|
242
239
|
}
|
|
243
240
|
|
|
244
241
|
:where(native-app) :where(section.content) > :where(n-aside)[open] {
|
|
245
|
-
width: var(--n-aside-width
|
|
246
|
-
min-width: var(--n-aside-min-width
|
|
247
|
-
margin-inline-start: calc(var(--n-space-k) * var(--n-space));
|
|
242
|
+
width: var(--n-aside-width);
|
|
243
|
+
min-width: var(--n-aside-min-width);
|
|
248
244
|
overflow-y: auto;
|
|
249
|
-
padding: calc(var(--n-space-k) * var(--n-space));
|
|
250
245
|
}
|
|
251
246
|
|
|
252
|
-
/* WHY: When n-chat manages its own sub-container
|
|
253
|
-
the layout container delegates — no own
|
|
247
|
+
/* WHY: When n-chat manages its own sub-container scroll,
|
|
248
|
+
the layout container delegates — no own scroll. */
|
|
254
249
|
:where(native-app) :where(section.content) > :where(n-aside)[open]:has(> n-chat) {
|
|
255
|
-
padding: 0;
|
|
256
250
|
overflow: visible;
|
|
257
251
|
}
|
|
258
252
|
|