mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 17:32:27 -06:00 
			
		
		
		
	
		
			
	
	
		
			24 lines
		
	
	
	
		
			473 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
	
		
			473 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| 
								 | 
							
								/* Style emoji to fit in-line with text */
							 | 
						||
| 
								 | 
							
								.emoji {
							 | 
						||
| 
								 | 
							
									width: 1.45em;
							 | 
						||
| 
								 | 
							
									height: 1.45em;
							 | 
						||
| 
								 | 
							
									margin: -0.2em 0.02em 0;
							 | 
						||
| 
								 | 
							
									object-fit: contain;
							 | 
						||
| 
								 | 
							
									vertical-align: middle;
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
									@media (prefers-reduced-motion: no-preference) {
							 | 
						||
| 
								 | 
							
										/*
							 | 
						||
| 
								 | 
							
											Enlarge emojis on hover to give
							 | 
						||
| 
								 | 
							
											viewer a good look at them.
							 | 
						||
| 
								 | 
							
										*/
							 | 
						||
| 
								 | 
							
										transition: 0.1s;
							 | 
						||
| 
								 | 
							
										&:hover, &:active {
							 | 
						||
| 
								 | 
							
											transform: scale(2);
							 | 
						||
| 
								 | 
							
											background-color: $bg;
							 | 
						||
| 
								 | 
							
											box-shadow: $boxshadow;
							 | 
						||
| 
								 | 
							
											border: $boxshadow-border;
							 | 
						||
| 
								 | 
							
											border-radius: $br-inner;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 |