* start work on client side explorer * fix tests * fmt * generic test flag * add prenav hook * add highlight class * make flex more consistent, remove transition * open folders that are prefixes of current path * make mobile look nice * more style fixes
		
			
				
	
	
		
			23 lines
		
	
	
		
			292 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			292 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@use "../../styles/variables.scss" as *;
 | 
						|
 | 
						|
.backlinks {
 | 
						|
  flex-direction: column;
 | 
						|
 | 
						|
  & > h3 {
 | 
						|
    font-size: 1rem;
 | 
						|
    margin: 0;
 | 
						|
  }
 | 
						|
 | 
						|
  & > ul {
 | 
						|
    list-style: none;
 | 
						|
    padding: 0;
 | 
						|
    margin: 0.5rem 0;
 | 
						|
 | 
						|
    & > li {
 | 
						|
      & > a {
 | 
						|
        background-color: transparent;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |