From ae971974048aef78f67e3ffe16c9ff0537f27493 Mon Sep 17 00:00:00 2001
From: Nathaniel Sabanski <sabanski.n@gmail.com>
Date: Wed, 14 Dec 2022 13:14:50 -0800
Subject: [PATCH] Fixed Project view .board-column height for tall screens.
 (#22108)

This bug occurs because we are calculating `.board-column` height
strictly off of `vh`, when the layout header is of static height.

BEFORE


https://user-images.githubusercontent.com/24665/206991060-372c24e3-986e-4fc6-9fc8-aab8b4ef09bb.mp4


AFTER


https://user-images.githubusercontent.com/24665/206991070-91b7cbab-d807-4016-8696-e43bdaf8a7ff.mp4
---
 web_src/less/features/projects.less | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/web_src/less/features/projects.less b/web_src/less/features/projects.less
index 21514688b6..b0f674060a 100644
--- a/web_src/less/features/projects.less
+++ b/web_src/less/features/projects.less
@@ -12,7 +12,8 @@
   margin: 0 .5rem !important;
   padding: .5rem !important;
   width: 320px;
-  height: 60vh;
+  height: calc(100vh - 450px);
+  min-height: 60vh;
   overflow-y: scroll;
   flex: 0 0 auto;
   overflow: visible;