* Responsive design grid * Addressed PR feedback * Bump Quartz version 4.3.1 => 4.4.0 * Moved page-header into center * Updated docs with new layouts * Sync updated version number with package-lock * Table of Content scrollbar auto * Reset node_modules * Updated layout images * Fixed tablet layout * Finilazed layout images
		
			
				
	
	
		
			41 lines
		
	
	
		
			630 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			630 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@use "../../styles/variables.scss" as *;
 | 
						|
 | 
						|
ul.section-ul {
 | 
						|
  list-style: none;
 | 
						|
  margin-top: 2em;
 | 
						|
  padding-left: 0;
 | 
						|
}
 | 
						|
 | 
						|
li.section-li {
 | 
						|
  margin-bottom: 1em;
 | 
						|
 | 
						|
  & > .section {
 | 
						|
    display: grid;
 | 
						|
    grid-template-columns: fit-content(8em) 3fr 1fr;
 | 
						|
 | 
						|
    @media all and ($mobile) {
 | 
						|
      & > .tags {
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    & > .desc > h3 > a {
 | 
						|
      background-color: transparent;
 | 
						|
    }
 | 
						|
 | 
						|
    & .meta {
 | 
						|
      margin: 0 1em 0 0;
 | 
						|
      opacity: 0.6;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// modifications in popover context
 | 
						|
.popover .section {
 | 
						|
  grid-template-columns: fit-content(8em) 1fr !important;
 | 
						|
 | 
						|
  & > .tags {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 |