aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles/BlockAnchor.ts
blob: 05eb2a2f1f53c123080eb87d8a159096cc0a765b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import styled from "styled-components";

export default styled.a`
  padding: 8px;
  width: 328px;
  display: block;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #666;
  &:visited,
  &:active {
    padding: 8px;
    width: 328px;
    display: block;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #666;
  }
`;