Use flex instead of grid to overcome 1,000 row browser limit.
Chrome stops adding grid rows after 1,000 and just piles them all up on the bottom.
This commit is contained in:
		
							parent
							
								
									63c332ea52
								
							
						
					
					
						commit
						da8a6f0505
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -20,8 +20,9 @@ | |||
| 
 | ||||
| #channel_list | ||||
| { | ||||
|     display: grid; | ||||
|     grid-row-gap: 8px; | ||||
|     display: flex; | ||||
|     flex-direction: column; | ||||
|     row-gap: 8px; | ||||
| } | ||||
| 
 | ||||
| .channel_card | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue