blob: 6ab212b7f88506e01aee39fa312be155571e21b8 (
plain) (
blame)
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
|
import styled from "styled-components";
import React from "react";
const Logo = styled.h1`
position: fixed;
bottom: 0.3em;
left: 0.5em;
opacity: 0.3;
font-size: 50px;
margin: 0 0;
transition: opacity 0.5s cubic-bezier(.25,.8,.25,1);
& > a {
text-decoration: none;
position: relative;
color: ${p => p.theme.colors.text};
}
&:hover {
opacity: 1;
}
`
export const Watermark = () => <Logo>
<a href="https://github.com/jackyzha0/ctrl-v">ctrl-v</a>
</Logo>
|