Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 188d5ac

Browse files
committed
refactor(footer): add mail madal to sponser
1 parent d368fe0 commit 188d5ac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

containers/Footer/BottomInfo.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ import React from 'react'
22

33
// import { ICON_CMD } from 'config'
44
import { Wrapper, Copyrights, Thanks, ThxTitle } from './styles/bottom_info'
5+
import { toggleBusBanner } from './logic'
56

67
const BottomInfo = () => (
78
<Wrapper>
89
<Copyrights>©2018 All Rights Reserved</Copyrights>
9-
<Thanks>
10+
<Thanks onClick={toggleBusBanner}>
1011
<ThxTitle>特别鸣谢: (求赞助)</ThxTitle>
1112
</Thanks>
1213
</Wrapper>

containers/Footer/styles/bottom_info.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ export const Copyrights = styled.div`
1818
`
1919
export const Thanks = styled.div`
2020
color: ${theme('thread.articleDigest')};
21+
&:hover {
22+
cursor: pointer;
23+
}
2124
`
2225
export const ThxTitle = styled.div``

0 commit comments

Comments
 (0)