diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-21 00:28:58 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-21 00:28:58 +0800 |
commit | 97369c969ce87695af7d0c0a86182e283f0cd726 (patch) | |
tree | 94e1171bbf4be2f27323aae3284fef7e58258de3 | |
parent | 72e68c43e33cac1bd8a95c4b55ea745095cffa48 (diff) | |
download | dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar.gz dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar.bz2 dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar.lz dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar.xz dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.tar.zst dexon-sol-tools-97369c969ce87695af7d0c0a86182e283f0cd726.zip |
Fix StyledCommunityLink props
-rw-r--r-- | packages/website/ts/@next/pages/community.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/website/ts/@next/pages/community.tsx b/packages/website/ts/@next/pages/community.tsx index eb3e7210d..a259e3438 100644 --- a/packages/website/ts/@next/pages/community.tsx +++ b/packages/website/ts/@next/pages/community.tsx @@ -253,9 +253,11 @@ const EventContent = styled.div` padding: 30px 30px; `; -// Community Links +interface StyledCommunityLinkProps { + bgColor: string; +} const StyledCommunityLink = styled.a` - background-color: ${(props: CommunityLinkProps) => props.bgColor}; + background-color: ${(props: StyledCommunityLinkProps) => props.bgColor}; color: ${colors.white}; width: 175px; height: 175px; |