mirror of
https://github.com/Redocly/redoc.git
synced 2025-01-31 18:14:07 +03:00
e2d0cd5b18
squashed commit of the following:
commit 6b07dc7fa0
Author: Anya Stasiuk <stasiukanya@gmail.com>
Date: Wed Nov 7 15:18:26 2018 +0200
theme fixes
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import * as styledComponents from 'styled-components';
|
|
|
|
import { ResolvedThemeInterface } from './theme';
|
|
|
|
export { ResolvedThemeInterface };
|
|
|
|
const {
|
|
default: styled,
|
|
css,
|
|
createGlobalStyle,
|
|
keyframes,
|
|
ThemeProvider,
|
|
} = (styledComponents as any) as styledComponents.ThemedStyledComponentsModule<
|
|
ResolvedThemeInterface
|
|
>;
|
|
|
|
export const media = {
|
|
lessThan(breakpoint, print?: boolean) {
|
|
return (...args) => css`
|
|
@media ${print ? 'print, ' : ''} screen and (max-width: ${props =>
|
|
props.theme.breakpoints[breakpoint]}) {
|
|
${(css as any)(...args)};
|
|
}
|
|
`;
|
|
},
|
|
|
|
greaterThan(breakpoint) {
|
|
return (...args) => css`
|
|
@media (min-width: ${props => props.theme.breakpoints[breakpoint]}) {
|
|
${(css as any)(...args)};
|
|
}
|
|
`;
|
|
},
|
|
|
|
between(firstBreakpoint, secondBreakpoint) {
|
|
return (...args) => css`
|
|
@media (min-width: ${props =>
|
|
props.theme.breakpoints[firstBreakpoint]}) and (max-width: ${props =>
|
|
props.theme.breakpoints[secondBreakpoint]}) {
|
|
${(css as any)(...args)};
|
|
}
|
|
`;
|
|
},
|
|
};
|
|
|
|
export { css, createGlobalStyle, keyframes, ThemeProvider };
|
|
export default styled;
|
|
|
|
export function extensionsHook(styledName: string) {
|
|
return props => {
|
|
if (!props.theme.extensionsHook) {
|
|
return;
|
|
}
|
|
return props.theme.extensionsHook(styledName, props);
|
|
};
|
|
}
|