19 lines
		
	
	
		
			328 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			328 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @tailwind base;
 | |
| @tailwind components;
 | |
| @tailwind utilities;
 | |
| 
 | |
| input[type='number'] {
 | |
|   -moz-appearance: textfield;
 | |
|   appearance: textfield;
 | |
| }
 | |
| 
 | |
| input[type='number']::-webkit-inner-spin-button {
 | |
|   -webkit-appearance: none;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| input[type='number']::-webkit-outer-spin-button {
 | |
|   -webkit-appearance: none;
 | |
|   margin: 0;
 | |
| }
 |