mirror of
https://github.com/Redocly/redoc.git
synced 2025-11-05 02:07:31 +03:00
48 lines
1018 B
TypeScript
48 lines
1018 B
TypeScript
import styled from '../../styled-components';
|
|
|
|
import { MiddlePanel, H1 } from '../../common-elements';
|
|
|
|
const delimiterWidth = 15;
|
|
|
|
export const ApiInfoWrap = MiddlePanel;
|
|
|
|
export const ApiHeader = H1.extend`
|
|
margin-top: 0;
|
|
margin-bottom: 0.5em;
|
|
`;
|
|
|
|
export const DownloadButton = styled.a`
|
|
border: 1px solid ${props => props.theme.colors.main};
|
|
color: ${props => props.theme.colors.main};
|
|
font-weight: normal;
|
|
margin-left: 0.5em;
|
|
padding: 4px 8px 4px;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
`;
|
|
|
|
export const InfoSpan = styled.span`
|
|
&::before {
|
|
content: '|';
|
|
display: inline-block;
|
|
opacity: 0.5;
|
|
width: ${delimiterWidth}px;
|
|
text-align: center;
|
|
}
|
|
|
|
&:last-child::after {
|
|
display: none;
|
|
}
|
|
`;
|
|
|
|
export const InfoSpanBoxWrap = styled.div`
|
|
overflow: hidden;
|
|
`;
|
|
|
|
export const InfoSpanBox = styled.div`
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
// hide separator on new lines: idea from https://stackoverflow.com/a/31732902/1749888
|
|
margin-left: -${delimiterWidth}px;
|
|
`;
|