mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	- Sass upgrade had some breaking changes where division was used hence updated for newer sass version support.
		
			
				
	
	
		
			36 lines
		
	
	
		
			472 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			472 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| @use "sass:math";
 | |
| @import "variables";
 | |
| 
 | |
| header {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| html, body {
 | |
|   font-size: 12px;
 | |
|   background-color: #FFF;
 | |
| }
 | |
| 
 | |
| .page-content {
 | |
|   margin: 0 auto;
 | |
| }
 | |
| 
 | |
| .print-hidden {
 | |
|   display: none !important;
 | |
| }
 | |
| 
 | |
| .tri-layout-container {
 | |
|   grid-template-columns: 1fr;
 | |
|   grid-template-areas: "b";
 | |
|   margin-inline-start: 0;
 | |
|   margin-inline-end: 0;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .card {
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .content-wrap.card {
 | |
|   padding-inline-start: 0;
 | |
|   padding-inline-end: 0;
 | |
| } |