You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			533 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			533 B
		
	
	
	
		
			TypeScript
		
	
import styled from 'styled-components';
 | 
						|
 | 
						|
export const LeftPaneSectionContainer = styled.div`
 | 
						|
  width: 80px;
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  align-items: center;
 | 
						|
  border-right: var(--border-session);
 | 
						|
  overflow-y: auto;
 | 
						|
 | 
						|
  .session-icon-button {
 | 
						|
    padding: 30px 20px;
 | 
						|
  }
 | 
						|
 | 
						|
  .module-avatar {
 | 
						|
    height: 80px;
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
  }
 | 
						|
 | 
						|
  // this is not ideal but it seems that nth-0last-child does not work
 | 
						|
  #onion-path-indicator-led-id {
 | 
						|
    margin: auto auto 0px auto;
 | 
						|
    opacity: 1;
 | 
						|
  }
 | 
						|
`;
 |