figured out adding a class to auth

This commit is contained in:
glosier 2020-12-28 07:17:36 -08:00
parent 26530332de
commit 2a6b40d2ed
3 changed files with 17 additions and 1 deletions

View File

@ -21,6 +21,14 @@
redoc { redoc {
display: block; display: block;
} }
.auth {
padding: 20px 0 0 0 !important;
}
h1, h2, h3, h4 {
padding-bottom: 0px !important;
}
</style> </style>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
</head> </head>

View File

@ -14,6 +14,14 @@
redoc { redoc {
display: block; display: block;
} }
.auth {
padding: 10px 0 0 0 !important;
}
h1, h2, h3, h4 {
margin-bottom: 0px !important;
}
</style> </style>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
</head> </head>

View File

@ -68,7 +68,7 @@ export interface SecurityDefsProps {
export class SecurityDefs extends React.PureComponent<SecurityDefsProps> { export class SecurityDefs extends React.PureComponent<SecurityDefsProps> {
render() { render() {
return this.props.securitySchemes.schemes.map(scheme => ( return this.props.securitySchemes.schemes.map(scheme => (
<Section id={scheme.sectionId} key={scheme.id}> <Section id={scheme.sectionId} key={scheme.id} className='auth'>
<Row> <Row>
<MiddlePanel> <MiddlePanel>
<H2> <H2>