@flytedan/flytebot-design-system 0.12.3 → 0.12.4
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/package.json +1 -1
- package/styles/components.css +6 -1
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -2180,7 +2180,12 @@
|
|
|
2180
2180
|
/* Narrow Topbar (`is-narrow`, set by Topbar from its own `overflowBreakpoint`, so the
|
|
2181
2181
|
crumb rules and the overflow menu always switch together): earlier crumbs hide (the
|
|
2182
2182
|
nav drawer `onMenu` opens still reaches them), and the current crumb truncates with
|
|
2183
|
-
an ellipsis instead of spilling its text outside a zero-width box.
|
|
2183
|
+
an ellipsis instead of spilling its text outside a zero-width box.
|
|
2184
|
+
The crumb also grows (`flex: 1 1 auto`) so it, not the row spacer, takes the width
|
|
2185
|
+
the collapsed controls free. */
|
|
2186
|
+
.fd-topbar.is-narrow .fd-crumb {
|
|
2187
|
+
flex: 1 1 auto;
|
|
2188
|
+
}
|
|
2184
2189
|
.fd-topbar.is-narrow .fd-crumb > *:not(:last-child) {
|
|
2185
2190
|
display: none;
|
|
2186
2191
|
}
|