mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							49 lines
						
					
					
						
							749 B
						
					
					
				
			
		
		
	
	
							49 lines
						
					
					
						
							749 B
						
					
					
				| @config "../../tailwind.application.config.js";
 | |
| 
 | |
| @import "tailwindcss/base";
 | |
| @import "tailwindcss/components";
 | |
| @import "tailwindcss/utilities";
 | |
| 
 | |
| a[href],
 | |
| input[type='checkbox'],
 | |
| input[type='submit'],
 | |
| input[type='image'],
 | |
| input[type='radio'],
 | |
| label[for],
 | |
| select,
 | |
| button {
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| button .disabled {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| button[disabled] .disabled {
 | |
|   display: initial;
 | |
| }
 | |
| 
 | |
| button .enabled {
 | |
|   display: initial;
 | |
| }
 | |
| 
 | |
| button[disabled] .enabled {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .base-input {
 | |
|   @apply input input-bordered bg-white;
 | |
| }
 | |
| 
 | |
| .base-button {
 | |
|   @apply btn text-white text-base no-animation;
 | |
| }
 | |
| 
 | |
| .white-button {
 | |
|   @apply btn btn-outline text-base bg-white border-2;
 | |
| }
 | |
| 
 | |
| .base-checkbox {
 | |
|   @apply checkbox rounded bg-white checkbox-sm no-animation;
 | |
| }
 |