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.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			360 B
		
	
	
	
		
			CSS
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			360 B
		
	
	
	
		
			CSS
		
	
.button-group {
 | 
						|
    display: flex;
 | 
						|
    flex-direction: row;
 | 
						|
    flex-wrap: nowrap;
 | 
						|
    justify-content: flex-start;
 | 
						|
    align-items: stretch;
 | 
						|
    align-content: stretch;
 | 
						|
}
 | 
						|
 | 
						|
.button-group > * {
 | 
						|
    flex: 1 1 auto;
 | 
						|
    margin: 0;
 | 
						|
}
 | 
						|
 | 
						|
/* all buttons on the inside should have no border radius */
 | 
						|
 | 
						|
.button-group :global(button) {
 | 
						|
    border-radius: 0 !important;
 | 
						|
}
 |