@flytedan/flytebot-design-system 0.8.0 → 0.8.1
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 +5 -1
package/package.json
CHANGED
package/styles/components.css
CHANGED
|
@@ -3784,7 +3784,11 @@
|
|
|
3784
3784
|
transition: transform var(--dur-base) var(--ease);
|
|
3785
3785
|
}
|
|
3786
3786
|
.fd-vlist-row-content {
|
|
3787
|
-
|
|
3787
|
+
/* Shorter than the row's own fixed slot, not 100% of it — the leftover space
|
|
3788
|
+
at the bottom of each slot is what reads as a gap between cards, without
|
|
3789
|
+
touching itemHeight itself (that number is load-bearing for the
|
|
3790
|
+
scroll/virtualization math in VirtualList.tsx, not just visual spacing). */
|
|
3791
|
+
height: calc(100% - 6px);
|
|
3788
3792
|
}
|
|
3789
3793
|
/* A freshly-added row (e.g. the destination side right after a move) gets a brief
|
|
3790
3794
|
fade/scale-in instead of popping in instantly. Scale/opacity only — never
|