This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import {
27
27
RightPart ,
28
28
RightPadding ,
29
29
PublishBtn ,
30
+ MobileBottom ,
30
31
} from './styles'
31
32
32
33
import * as logic from './logic'
@@ -82,6 +83,15 @@ class WikiThreadContainer extends React.Component {
82
83
< WikiWrapper >
83
84
{ renderView ( wikiData , curView , communityRaw ) }
84
85
</ WikiWrapper >
86
+ < MobileBottom >
87
+ < Contributors
88
+ communityRaw = { communityRaw }
89
+ isLogin = { isLogin }
90
+ users = { wikiData . contributors }
91
+ views = { wikiData . views }
92
+ lastSync = { wikiData . lastSync }
93
+ />
94
+ </ MobileBottom >
85
95
</ LeftPart >
86
96
< RightPart >
87
97
< React . Fragment >
Original file line number Diff line number Diff line change @@ -27,9 +27,15 @@ export const RightPart = styled.div`
27
27
width: 25vw;
28
28
margin-left: 30px;
29
29
padding-top: 5px;
30
+ ${ cs . media . mobile `display: none;` } ;
30
31
`
31
32
export const PublishBtn = styled ( Button ) `
32
33
width: 100%;
33
34
max-width: 220px;
34
35
margin-top: 10px;
35
36
`
37
+
38
+ export const MobileBottom = styled . div `
39
+ display: none;
40
+ ${ cs . media . mobile `display: block;` } ;
41
+ `
You can’t perform that action at this time.
0 commit comments