mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	Made so footer link ordering, names and urls can be set. Cleaned up some of the setting-service and added support for array setting types, which are cleaned on entry and stored as json with a new type indicator column on the settings table for auto-decode. Also added testing to cover this feature. Related to #1973 and #854
		
			
				
	
	
		
			17 lines
		
	
	
		
			220 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			220 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| /**
 | |
|  * Includes the footer links.
 | |
|  */
 | |
| 
 | |
|  footer {
 | |
|     flex-shrink: 0;
 | |
|     padding: 1rem 1rem 2rem 1rem;
 | |
|     text-align: center;
 | |
|   }
 | |
|   
 | |
|   footer a {
 | |
|     margin: 0 .5em;
 | |
|   }
 | |
|   
 | |
|   body.flexbox footer {
 | |
|     display: none;
 | |
|   } |