mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 17:25:59 +02:00
30 lines
707 B
TypeScript
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;
|
|
`
|