mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-10-30 07:16:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /*
 | |
|   Specific icons used in the built-in notebooks
 | |
| 
 | |
|   Note: we use the ri- prefix to use the existing
 | |
|   Remix icon CSS
 | |
| */
 | |
| 
 | |
| .ri-livebook-sections,
 | |
| .ri-livebook-runtime,
 | |
| .ri-livebook-shortcuts,
 | |
| .ri-livebook-secrets,
 | |
| .ri-livebook-deploy,
 | |
| .ri-livebook-terminal,
 | |
| .ri-livebook-save {
 | |
|   @apply text-xl align-middle;
 | |
| }
 | |
| 
 | |
| .ri-livebook-sections:before {
 | |
|   content: "\eade";
 | |
| }
 | |
| 
 | |
| .ri-livebook-runtime:before {
 | |
|   content: "\ebf0";
 | |
| }
 | |
| 
 | |
| .ri-livebook-shortcuts:before {
 | |
|   content: "\ee72";
 | |
| }
 | |
| 
 | |
| .ri-livebook-secrets:before {
 | |
|   content: "\eed0";
 | |
| }
 | |
| 
 | |
| .ri-livebook-deploy:before {
 | |
|   content: "\f096";
 | |
| }
 | |
| 
 | |
| .ri-livebook-terminal:before {
 | |
|   content: "\f1f8";
 | |
| }
 | |
| 
 | |
| .ri-livebook-save:before {
 | |
|   content: "\f0b3";
 | |
| }
 |