@flytedan/flytebot-design-system 0.6.0 → 0.7.0
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/index.cjs +1293 -1034
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +225 -1
- package/dist/index.d.ts +225 -1
- package/dist/index.js +1287 -1034
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/styles/components.css +6 -1
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -2409,7 +2409,12 @@
|
|
|
2409
2409
|
box-shadow: var(--e-3);
|
|
2410
2410
|
animation: fd-pop-in 160ms var(--ease-out) both;
|
|
2411
2411
|
transform-origin: top center;
|
|
2412
|
-
|
|
2412
|
+
/* max-height (set inline by Popover.tsx) sizes to content by default, capped only
|
|
2413
|
+
at the real available room to the viewport edge — so this is a last-resort
|
|
2414
|
+
scroller for that legitimate viewport-collision case, not a content clipper.
|
|
2415
|
+
overflow-x stays hidden so children never poke past the rounded corners. */
|
|
2416
|
+
overflow-x: hidden;
|
|
2417
|
+
overflow-y: auto;
|
|
2413
2418
|
display: flex;
|
|
2414
2419
|
flex-direction: column;
|
|
2415
2420
|
}
|