You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			24 lines
		
	
	
		
			303 B
		
	
	
	
		
			SCSS
		
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			303 B
		
	
	
	
		
			SCSS
		
	
| 
											9 months ago
										 | @keyframes slide-in { | ||
|  |   from { | ||
|  |     opacity: 0; | ||
|  |     transform: translateY(20px); | ||
|  |   } | ||
|  | 
 | ||
|  |   to { | ||
|  |     opacity: 1; | ||
|  |     transform: translateY(0px); | ||
|  |   } | ||
|  | } | ||
|  | 
 | ||
|  | @keyframes slide-in-from-top { | ||
|  |   from { | ||
|  |     opacity: 0; | ||
|  |     transform: translateY(-20px); | ||
|  |   } | ||
|  | 
 | ||
|  |   to { | ||
|  |     opacity: 1; | ||
|  |     transform: translateY(0px); | ||
|  |   } | ||
|  | } |