From d13d16976896ef752680fde1cda43e42a46c4413 Mon Sep 17 00:00:00 2001 From: Hekatomb <105611542+Hekatomb@users.noreply.github.com> Date: Thu, 13 Jun 2024 09:45:31 +0200 Subject: [PATCH] Update cardDetails.css Bugfix, task card may overflow below the screen when maximized, making the bottom part not viewable. Reason: Top position is set to 97px, Height of the element is set to calc(100% - 20px). Fix: Set the height to be lower than 100% - Top position --- client/components/cards/cardDetails.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/cards/cardDetails.css b/client/components/cards/cardDetails.css index 286d6d883..370cafb76 100644 --- a/client/components/cards/cardDetails.css +++ b/client/components/cards/cardDetails.css @@ -272,7 +272,7 @@ box-sizing: border-box; top: 97px; left: 0px; - height: calc(100% - 20px); + height: calc(100% - 100px); width: calc(100% - 20px); float: left; }