- Add the system_css template - Name the CSS files in the css directory with a numeric prefix so they sort by priority.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			459 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			459 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
/**************************
 | 
						|
 # COMPONENT: PAGE SUMMARY
 | 
						|
 **************************/
 | 
						|
 | 
						|
.summary {
 | 
						|
  &:not(:last-child) {
 | 
						|
    margin-block-end: var(--space-l);
 | 
						|
  }
 | 
						|
 | 
						|
  .summary__post-title {
 | 
						|
    margin-block: 0 var(--space-xs);
 | 
						|
  }
 | 
						|
 | 
						|
  .summary__post-subtitle {
 | 
						|
    font-weight: 500;
 | 
						|
  }
 | 
						|
 | 
						|
  .summary__content {
 | 
						|
    margin-block-end: var(--space-m);
 | 
						|
  }
 | 
						|
 | 
						|
  :is(.summary__post-title, .summary__post-subtitle):last-child {
 | 
						|
    margin-block-end: var(--space-m);
 | 
						|
  }
 | 
						|
}
 |