feat: move all @next files to non @next directory

This commit is contained in:
fragosti
2018-12-20 16:01:53 -08:00
parent 9b540fd8e5
commit abdf91c691
119 changed files with 213 additions and 677 deletions

View File

@@ -0,0 +1,15 @@
import { NavLink as ReactRouterLink } from 'react-router-dom';
import styled from 'styled-components';
export const ChapterLink = styled(ReactRouterLink).attrs({
activeStyle: { opacity: 1 },
})`
font-size: 1.222222222rem;
display: block;
opacity: 0.5;
margin-bottom: 1.666666667rem;
&:hover {
opacity: 1;
}
`;