Files
website/src/components/DiscordButton/styles.tsx
T
2019-10-07 07:48:10 -04:00

30 lines
707 B
TypeScript

import styled from "styled-components"
import DiscordLogo from "../../images/discord-logo.svg"
export const DiscordButtonWrapper = styled.a`
margin-top: 32px;
display: flex;
align-items: center;
font-family: "Oxygen", sans-serif;
font-size: 24px;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
background: ${props => props.theme.discord.base};
color: #fff;
padding: 18px 28px;
border-radius: 5px;
transition: background 0.3s;
cursor: pointer;
box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
&:hover {
background: ${props => props.theme.discord.darker};
}
`
export const StyledDiscordLogo = styled(DiscordLogo)`
width: 30px;
margin-right: 13px;
`