mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			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.
		
		
		
		
		
			
		
			
				
	
	
		
			58 lines
		
	
	
		
			828 B
		
	
	
	
		
			CSS
		
	
			
		
		
	
	
			58 lines
		
	
	
		
			828 B
		
	
	
	
		
			CSS
		
	
.header .title {
 | 
						|
	display: flex;
 | 
						|
	flex-direction: row;
 | 
						|
	justify-content: space-between;
 | 
						|
	align-items: center;
 | 
						|
}
 | 
						|
 | 
						|
.header .title .badges {
 | 
						|
	display: flex;
 | 
						|
	gap: var(--gap-half);
 | 
						|
	flex-wrap: wrap;
 | 
						|
}
 | 
						|
 | 
						|
.header .title h3 {
 | 
						|
	margin: 0;
 | 
						|
	padding: 0;
 | 
						|
	display: inline-block;
 | 
						|
}
 | 
						|
 | 
						|
.header .buttons {
 | 
						|
	display: flex;
 | 
						|
	justify-content: flex-end;
 | 
						|
	margin-bottom: var(--gap);
 | 
						|
}
 | 
						|
 | 
						|
.controls {
 | 
						|
	display: flex;
 | 
						|
	justify-content: flex-end;
 | 
						|
}
 | 
						|
 | 
						|
@media screen and (max-width: 900px) {
 | 
						|
	.header {
 | 
						|
		flex-direction: column;
 | 
						|
		gap: var(--gap);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
@media screen and (max-width: 768px) {
 | 
						|
	.header .title {
 | 
						|
		flex-direction: column;
 | 
						|
		gap: var(--gap-half);
 | 
						|
	}
 | 
						|
 | 
						|
	.header .title .badges {
 | 
						|
		align-items: center;
 | 
						|
		justify-content: center;
 | 
						|
	}
 | 
						|
 | 
						|
	.header .buttons {
 | 
						|
		display: flex;
 | 
						|
		justify-content: center;
 | 
						|
	}
 | 
						|
 | 
						|
	.controls {
 | 
						|
		justify-content: center;
 | 
						|
	}
 | 
						|
}
 |