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
@@ -5,7 +5,7 @@ import Logo from "../../images/tph-logo.svg"
export const MobileHeaderWrapper = styled.div`
z-index: 50;
background: ${props => transparentize(0.6, props.theme.main.background)};
background: ${(props) => transparentize(0.6, props.theme.main.background)};
backdrop-filter: blur(14px);
position: fixed;
top: 0;
@@ -52,7 +52,7 @@ export const Burger = styled.div`
content: "";
height: 2px;
width: 16px;
background: ${props => props.theme.main.foreground};
background: ${(props) => props.theme.main.foreground};
margin: 0 auto;
}