mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			608 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			608 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
@tailwind components;
 | 
						|
 | 
						|
@layer components {
 | 
						|
    .badge {
 | 
						|
        @apply inline-flex justify-center items-center text-text-tertiary border border-divider-deep
 | 
						|
    }
 | 
						|
 | 
						|
    .badge-l {
 | 
						|
        @apply rounded-md gap-1 min-w-6
 | 
						|
    }
 | 
						|
 | 
						|
    /* m is for the regular button */
 | 
						|
    .badge-m {
 | 
						|
        @apply rounded-md gap-[3px] min-w-5
 | 
						|
    }
 | 
						|
 | 
						|
    .badge-s {
 | 
						|
        @apply rounded-[5px] gap-0.5 min-w-[18px]
 | 
						|
    }
 | 
						|
 | 
						|
    .badge.badge-warning {
 | 
						|
        @apply text-text-warning border border-text-warning
 | 
						|
    }
 | 
						|
 | 
						|
    .badge.badge-accent {
 | 
						|
        @apply text-text-accent-secondary border border-text-accent-secondary
 | 
						|
    }
 | 
						|
}
 |