From 79183d64173e588d88bf074d5b50a52a71c2d885 Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Tue, 26 Mar 2024 09:56:50 +0100 Subject: [PATCH] Fix bottom gap in card expansion panel This commit fixes an unintended bottom gap in the card expansional panel, observed in the Windows script collection's "Advanced settings". This issue arrives from a `min-height` CSS property that no longer aligns with the current method for achieving balanced padding. It's only visible when an action (a card) contains too few scripts (nodes). --- src/presentation/components/Scripts/View/Cards/CardListItem.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/presentation/components/Scripts/View/Cards/CardListItem.vue b/src/presentation/components/Scripts/View/Cards/CardListItem.vue index f6a99c68..5ddd0d92 100644 --- a/src/presentation/components/Scripts/View/Cards/CardListItem.vue +++ b/src/presentation/components/Scripts/View/Cards/CardListItem.vue @@ -248,7 +248,6 @@ $card-horizontal-gap : $card-gap; } .card__expander { - min-height: 200px; margin-top: $expanded-margin-top; opacity: 1; }