feat: move all @next files to non @next directory
This commit is contained in:
15
packages/website/ts/components/chapter_link.tsx
Normal file
15
packages/website/ts/components/chapter_link.tsx
Normal 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;
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user