Skip to content

Commit ae97197

Browse files
authored
Fixed Project view .board-column height for tall screens. (go-gitea#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
1 parent cdc4345 commit ae97197

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web_src/less/features/projects.less

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
margin: 0 .5rem !important;
1313
padding: .5rem !important;
1414
width: 320px;
15-
height: 60vh;
15+
height: calc(100vh - 450px);
16+
min-height: 60vh;
1617
overflow-y: scroll;
1718
flex: 0 0 auto;
1819
overflow: visible;

0 commit comments

Comments
 (0)