mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-24 17:43:45 +03:00
34 lines
623 B
SCSS
34 lines
623 B
SCSS
@import '../../shared/styles/variables';
|
|
|
|
:host > .api-info-wrapper {
|
|
box-sizing: border-box;
|
|
padding: $section-spacing;
|
|
width: 60%;
|
|
|
|
|
|
@media (max-width: $right-panel-squash-breakpoint) {
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width: $side-menu-mobile-breakpoint) {
|
|
padding-top: $section-spacing + 20px;
|
|
}
|
|
}
|
|
|
|
.openapi-button {
|
|
border: 1px solid $primary-color;
|
|
color: $primary-color;
|
|
font-weight: normal;
|
|
margin-left: 0.5em;
|
|
padding: 3px 8px 4px;
|
|
display: inline-block;
|
|
}
|
|
|
|
:host /deep/ [section] {
|
|
padding-top: 2 * $section-spacing;
|
|
}
|
|
|
|
:host /deep/ h2[section] {
|
|
padding-top: $section-spacing;
|
|
}
|