mirror of
https://github.com/Redocly/redoc.git
synced 2025-10-19 01:54:22 +03:00
* chore: use openapi-core to bundle definition instead of json-schema-ref-parser * chore: update: root and demo webpack configs * chore: refactor loadAndBundleSpec * chore: update vesions: openapi-core, redoc * chore: rolled back webpack.config(s) to previous version * chore: changed the way of creating core Config for bundling definition * fix: disable eslint react/display-name * fix: update nodejs version to 12 in travis config * chore: optimize verification: browser or server * chore: add fetch only for browser * Update src/utils/loadAndBundleSpec.ts * chore: isBrowser verification improvment Co-authored-by: Roman Hotsiy <gotsijroman@gmail.com>
22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
import * as React from 'react';
|
|
import styled from '../../styled-components';
|
|
|
|
export const LogoImgEl = styled.img`
|
|
max-height: ${props => props.theme.logo.maxHeight};
|
|
max-width: ${props => props.theme.logo.maxWidth};
|
|
padding: ${props => props.theme.logo.gutter};
|
|
width: 100%;
|
|
display: block;
|
|
`;
|
|
|
|
export const LogoWrap = styled.div`
|
|
text-align: center;
|
|
`;
|
|
|
|
const Link = styled.a`
|
|
display: inline-block;
|
|
`;
|
|
|
|
// eslint-disable-next-line react/display-name
|
|
export const LinkWrap = url => Component => <Link href={url}>{Component}</Link>;
|