mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* chore: Fix self-closing tag issues * Fix merge conflicts Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <li class="dropdown-menu--divider" :tabindex="null" :aria-disabled="true" />
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
export default {};
 | 
						|
</script>
 | 
						|
<style lang="scss" scoped>
 | 
						|
.dropdown-menu--divider {
 | 
						|
  list-style: none;
 | 
						|
  margin: var(--space-small) 0;
 | 
						|
  border-bottom: 1px solid var(--s-50);
 | 
						|
}
 | 
						|
</style>
 |