mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 01:37:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			793 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			793 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import '../../shared/styles/variables';
 | 
						|
 | 
						|
:host {
 | 
						|
  overflow: hidden;
 | 
						|
}
 | 
						|
 | 
						|
tab, tabs {
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
schema-sample {
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
header {
 | 
						|
    font-family: $headers-font;
 | 
						|
    font-size: 0.929em;
 | 
						|
    text-transform: uppercase;
 | 
						|
    margin: 0;
 | 
						|
    color: $sample-panel-headers-color;
 | 
						|
    text-transform: uppercase;
 | 
						|
    font-weight: normal;
 | 
						|
}
 | 
						|
 | 
						|
:host > tabs > ul li {
 | 
						|
    font-family: $headers-font;
 | 
						|
    font-size: 0.929em;
 | 
						|
    border-radius: $border-radius;
 | 
						|
    margin: 2px 0;
 | 
						|
    padding: 2px 8px 3px 8px;
 | 
						|
    color: $sample-panel-headers-color;
 | 
						|
    line-height: 1.25;
 | 
						|
 | 
						|
    &:hover {
 | 
						|
        color: #ffffff;
 | 
						|
        background-color: rgba(white, .1);
 | 
						|
    }
 | 
						|
 | 
						|
    &.active {
 | 
						|
        background-color: white;
 | 
						|
        color: $black;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
:host tabs ul {
 | 
						|
    padding-top: 10px;
 | 
						|
}
 |