fix(ui): set CardBody minimum height

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2026-04-27 08:56:12 +01:00
parent ad7d51bfec
commit de75f7c0f4
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/ui': patch
---
Fixed `CardBody` showing an unwanted scrollbar when constrained below the scroll shadow height.
**Affected components:** Card
@@ -94,7 +94,7 @@
.bui-CardBody {
flex: 1;
min-height: 0;
min-height: var(--bui-space-6);
overflow: auto;
padding-inline: var(--bui-space-3);
padding-block: var(--bui-space-3);