File size: 939 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// @flow
import theme from 'shared/theme';
import styled from 'styled-components';
import { hexa, tint } from 'src/components/globals';
import { Link } from 'react-router-dom';

export const HasNextPage = styled(Link)`
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: ${theme.bg.default};
  width: 100%;
`;

export const NextPageButton = styled.span`
  display: flex;
  flex: 1;
  margin-top: 16px;
  justify-content: center;
  padding: 8px;
  background: ${hexa(theme.brand.default, 0.04)};
  color: ${tint(theme.brand.default, -8)};
  border-top: 1px solid ${hexa(theme.brand.default, 0.06)};
  border-bottom: 1px solid ${hexa(theme.brand.default, 0.06)};
  font-size: 15px;
  font-weight: 500;
  position: relative;
  min-height: 40px;
  width: 100%;

  &:hover {
    color: ${theme.brand.default};
    cursor: pointer;
    background: ${hexa(theme.brand.default, 0.08)};
  }
`;