浏览代码

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
Hekatomb 11 月之前
父节点
当前提交
d13d169768
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/components/cards/cardDetails.css

+ 1 - 1
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;
   }