mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	In Projects, columns heights are defined by the sum of all contents height of the biggest column, rather than a fraction of the viewport height. It default to 60vh when there is no cards to display. Fix #31666
This commit is contained in:
		@@ -3,6 +3,8 @@
 | 
				
			|||||||
  flex-direction: row;
 | 
					  flex-direction: row;
 | 
				
			||||||
  flex-wrap: nowrap;
 | 
					  flex-wrap: nowrap;
 | 
				
			||||||
  overflow-x: auto;
 | 
					  overflow-x: auto;
 | 
				
			||||||
 | 
					  overflow-y: clip;
 | 
				
			||||||
 | 
					  align-items: stretch;
 | 
				
			||||||
  margin: 0 0.5em;
 | 
					  margin: 0 0.5em;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -25,8 +27,8 @@
 | 
				
			|||||||
  margin: 0 0.5rem !important;
 | 
					  margin: 0 0.5rem !important;
 | 
				
			||||||
  padding: 0.5rem !important;
 | 
					  padding: 0.5rem !important;
 | 
				
			||||||
  width: 320px;
 | 
					  width: 320px;
 | 
				
			||||||
  height: calc(100vh - 450px);
 | 
					  height: initial;
 | 
				
			||||||
  min-height: 60vh;
 | 
					  min-height: max(calc(100vh - 400px), 300px);
 | 
				
			||||||
  flex: 0 0 auto;
 | 
					  flex: 0 0 auto;
 | 
				
			||||||
  overflow: visible;
 | 
					  overflow: visible;
 | 
				
			||||||
  display: flex;
 | 
					  display: flex;
 | 
				
			||||||
@@ -61,7 +63,7 @@
 | 
				
			|||||||
  padding: 0 !important;
 | 
					  padding: 0 !important;
 | 
				
			||||||
  flex-wrap: nowrap !important;
 | 
					  flex-wrap: nowrap !important;
 | 
				
			||||||
  flex-direction: column;
 | 
					  flex-direction: column;
 | 
				
			||||||
  overflow-x: auto;
 | 
					  overflow-x: clip;
 | 
				
			||||||
  gap: .25rem;
 | 
					  gap: .25rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user