You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			301 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			301 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| body {
 | |
| 	margin: 0;
 | |
| 	padding: 0;
 | |
| }
 | |
| 
 | |
| #react-root {
 | |
| 	height: 100%;
 | |
| }
 | |
| 
 | |
| .item-list {
 | |
| 	overflow-x: hidden;
 | |
| 	overflow-y: scroll;
 | |
| }
 | |
| 
 | |
| .note-list .item {
 | |
| 	height: 40px; /* This must match NoteList.itemHeight */
 | |
| 	vertical-align: middle;
 | |
| 	cursor: pointer;
 | |
| }
 | |
| 
 | |
| .note-list .item.odd {
 | |
| 	background-color: lightgray;
 | |
| } |