mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 18:16:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			506 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			506 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .filelist-item-appear{
 | |
|     opacity: 0;
 | |
|     transform: translateY(5px);
 | |
| }
 | |
| .filelist-item-appear.filelist-item-appear-active{
 | |
|     transition: all 0.2s ease-out;
 | |
|     transform: translateY(0px);
 | |
|     opacity: 1;
 | |
| }
 | |
| 
 | |
| .component_filesystem{
 | |
|     > div{
 | |
|         height: 100%;
 | |
|         .list{
 | |
|             clear: both;
 | |
|             padding-bottom: 30px;
 | |
|         }
 | |
| 
 | |
|         .error{
 | |
|             font-size: 25px;
 | |
|             text-align: center;
 | |
|             font-weight: 100;
 | |
|             margin-top: 50px;
 | |
|         }
 | |
|     }
 | |
| }
 | 
