mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 13:37:09 -04:00
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
This commit is contained in:
parent
e3929973d1
commit
d13d169768
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue