File tree Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,14 @@ const BlogPostsContainer = ({
55
55
)
56
56
}
57
57
{ viewall && posts . length >= 3 ? (
58
- < Link
59
- className = { styles . viewAll }
60
- href = { tag ? `/blog/category/${ tag } ` : '/blog/category/all' }
61
- >
62
- view all
63
- </ Link >
58
+ < Container >
59
+ < Link
60
+ className = { styles . viewAll }
61
+ href = { tag ? `/blog/category/${ tag } ` : '/blog/category/all' }
62
+ >
63
+ view all
64
+ </ Link >
65
+ </ Container >
64
66
) : null }
65
67
</ div >
66
68
</ RevealContentContainer >
Original file line number Diff line number Diff line change 10
10
.viewAll {
11
11
font-size : 1.5rem ;
12
12
font-weight : bold ;
13
- margin : -6rem 6.5rem 4rem 0 ;
14
- text-align : right ;
13
+ position : relative ;
14
+ top : -3rem ;
15
+ display : block ;
16
+ text-align : center ;
15
17
16
- @include mobile {
17
- text-align : center ;
18
- margin : -5rem auto 4 rem auto ;
18
+ @include desktop {
19
+ float : right ;
20
+ top : -5rem ;
19
21
}
20
22
}
21
23
You can’t perform that action at this time.
0 commit comments