mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 09:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			649 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			649 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import '../../common/styles/variables';
 | 
						|
@import '../../common/styles/share-link';
 | 
						|
 | 
						|
.tag-info {
 | 
						|
  padding: 0 20px;
 | 
						|
  box-sizing: border-box;
 | 
						|
  background-color: white;
 | 
						|
}
 | 
						|
 | 
						|
.tag-info:after, .tag-info:before {
 | 
						|
  content: "";
 | 
						|
  display: table;
 | 
						|
}
 | 
						|
 | 
						|
.tag-info h1 {
 | 
						|
  color: $headers-color;
 | 
						|
  text-transform: capitalize;
 | 
						|
  font-weight: normal;
 | 
						|
}
 | 
						|
 | 
						|
.methods {
 | 
						|
  display: block;
 | 
						|
  position: relative;;
 | 
						|
}
 | 
						|
 | 
						|
.methods:before {
 | 
						|
  content: "";
 | 
						|
  background: $samples-panel-bg-color;
 | 
						|
  height: 100%;
 | 
						|
  width: $samples-panel-width;
 | 
						|
  top: 0;
 | 
						|
  right: 0;
 | 
						|
  position: absolute;
 | 
						|
  z-index: -1;
 | 
						|
}
 | 
						|
 | 
						|
@media (max-width: 1100px) {
 | 
						|
  .methods:before {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 |