mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-04 14:59:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			414 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			414 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import 'utilities/borderradius';
 | 
						|
 | 
						|
code {
 | 
						|
  background: $color-tertiary;
 | 
						|
  font-size: 86%;
 | 
						|
  margin: 0 .2rem;
 | 
						|
  padding: .2rem .5rem;
 | 
						|
  white-space: nowrap;
 | 
						|
 | 
						|
  @include border-radius(.4rem);
 | 
						|
}
 | 
						|
 | 
						|
pre {
 | 
						|
  background: $color-tertiary;
 | 
						|
  border-left: .3rem solid $color-primary;
 | 
						|
  overflow-x: auto;
 | 
						|
 | 
						|
  & > code {
 | 
						|
    display: block;
 | 
						|
    padding: 1rem 1.5rem;
 | 
						|
    white-space: pre;
 | 
						|
 | 
						|
    @include border-radius(0);
 | 
						|
  }
 | 
						|
}
 |