mirror of
				https://github.com/ZetaKebab/kesper.git
				synced 2025-11-04 08:09:49 +00:00 
			
		
		
		
	Fix bouncing scroll-down arrow bug in webkit
Webkit transform currently requires a vendor prefix. Without it, the arrow bounces and rotate to the original un-rotated state. See https://www.dropbox.com/s/46sjiihtjya42s8/wk-rotate.mov
This commit is contained in:
		@@ -508,6 +508,7 @@ margin on the iframe, cause it breaks stuff. */
 | 
				
			|||||||
    text-align: center;
 | 
					    text-align: center;
 | 
				
			||||||
    text-decoration: none;
 | 
					    text-decoration: none;
 | 
				
			||||||
    color: rgba(255,255,255,0.7);
 | 
					    color: rgba(255,255,255,0.7);
 | 
				
			||||||
 | 
					    -webkit-transform: rotate(-90deg);
 | 
				
			||||||
    transform: rotate(-90deg);
 | 
					    transform: rotate(-90deg);
 | 
				
			||||||
    -webkit-animation: bounce 4s 2s infinite;
 | 
					    -webkit-animation: bounce 4s 2s infinite;
 | 
				
			||||||
    animation: bounce 4s 2s infinite;
 | 
					    animation: bounce 4s 2s infinite;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user