style: format codebase

This commit is contained in:
Jean-Philippe Sirois
2020-05-19 21:57:49 -04:00
parent 0eaea34b28
commit a1283334b3
37 changed files with 146 additions and 138 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ export const DiscordButtonWrapper = styled.a`
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
background: ${props => props.theme.discord.base};
background: ${(props) => props.theme.discord.base};
color: #fff;
padding: 18px 28px;
border-radius: 5px;
@@ -19,7 +19,7 @@ export const DiscordButtonWrapper = styled.a`
box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
&:hover {
background: ${props => props.theme.discord.darker};
background: ${(props) => props.theme.discord.darker};
}
`