mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 19:36:44 +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;
|
|
}
|
|
}
|