27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
.vxe-button-group {
 | 
						|
  display: inline-flex;
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical {
 | 
						|
  flex-direction: column;
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button, .vxe-button-group.is--vertical > .vxe-button--dropdown {
 | 
						|
  margin-top: var(--vxe-ui-base-margin-gap-default);
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button.size--medium, .vxe-button-group.is--vertical > .vxe-button--dropdown.size--medium {
 | 
						|
  margin-top: var(--vxe-ui-base-margin-gap-medium);
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button.size--small, .vxe-button-group.is--vertical > .vxe-button--dropdown.size--small {
 | 
						|
  margin-top: var(--vxe-ui-base-margin-gap-small);
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button.size--mini, .vxe-button-group.is--vertical > .vxe-button--dropdown.size--mini {
 | 
						|
  margin-top: var(--vxe-ui-base-margin-gap-mini);
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button:first-of-type, .vxe-button-group.is--vertical > .vxe-button--dropdown:first-of-type {
 | 
						|
  margin-top: 0;
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button.type--button, .vxe-button-group.is--vertical > .vxe-button--dropdown {
 | 
						|
  margin-right: 0;
 | 
						|
}
 | 
						|
.vxe-button-group.is--vertical > .vxe-button + .vxe-button--dropdown, .vxe-button-group.is--vertical > .vxe-button--dropdown + .vxe-button {
 | 
						|
  margin-left: 0;
 | 
						|
} |