mirror of
https://github.com/Redocly/redoc.git
synced 2025-08-07 13:44:54 +03:00
figured out adding a class to auth
This commit is contained in:
parent
26530332de
commit
2a6b40d2ed
|
@ -21,6 +21,14 @@
|
|||
redoc {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.auth {
|
||||
padding: 20px 0 0 0 !important;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
padding-bottom: 0px !important;
|
||||
}
|
||||
</style>
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
||||
</head>
|
||||
|
|
|
@ -14,6 +14,14 @@
|
|||
redoc {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.auth {
|
||||
padding: 10px 0 0 0 !important;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
</style>
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
||||
</head>
|
||||
|
|
|
@ -68,7 +68,7 @@ export interface SecurityDefsProps {
|
|||
export class SecurityDefs extends React.PureComponent<SecurityDefsProps> {
|
||||
render() {
|
||||
return this.props.securitySchemes.schemes.map(scheme => (
|
||||
<Section id={scheme.sectionId} key={scheme.id}>
|
||||
<Section id={scheme.sectionId} key={scheme.id} className='auth'>
|
||||
<Row>
|
||||
<MiddlePanel>
|
||||
<H2>
|
||||
|
|
Loading…
Reference in New Issue
Block a user