aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/chapter_link.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-12-21 08:01:53 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-12-21 08:01:53 +0800
commitabdf91c691b924b75d71db49fba296da9c8ddcac (patch)
tree78e62a107f1de7f3b16dd63bdbc039ab26b561a3 /packages/website/ts/@next/components/chapter_link.tsx
parent9b540fd8e52e7578d3749e6d9ef9cd97d602ffb3 (diff)
downloaddexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar.gz
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar.bz2
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar.lz
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar.xz
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.tar.zst
dexon-0x-contracts-abdf91c691b924b75d71db49fba296da9c8ddcac.zip
feat: move all @next files to non @next directory
Diffstat (limited to 'packages/website/ts/@next/components/chapter_link.tsx')
-rw-r--r--packages/website/ts/@next/components/chapter_link.tsx15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/website/ts/@next/components/chapter_link.tsx b/packages/website/ts/@next/components/chapter_link.tsx
deleted file mode 100644
index fd974cec1..000000000
--- a/packages/website/ts/@next/components/chapter_link.tsx
+++ /dev/null
@@ -1,15 +0,0 @@
-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;
- }
-`;