13 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .button {
 | |
|   @apply bg-blue-600 border-blue-600 border inline-block text-white no-underline py-2 px-3 rounded text-sm;
 | |
| 
 | |
|   &:focus {
 | |
|     @apply py-2 px-3 m-0
 | |
|   }
 | |
| 
 | |
|   &:active,
 | |
|   &:focus,
 | |
|   &:hover {
 | |
|     @apply bg-white text-blue-600
 | |
|   }
 | |
| }
 |