aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles/BlockAnchor.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/BlockAnchor.ts')
-rw-r--r--src/styles/BlockAnchor.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/styles/BlockAnchor.ts b/src/styles/BlockAnchor.ts
new file mode 100644
index 0000000..05eb2a2
--- /dev/null
+++ b/src/styles/BlockAnchor.ts
@@ -0,0 +1,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;
+ }
+`;