chore: project cleanup and bugfixes

This commit is contained in:
Jordan Knott
2020-07-12 02:06:11 -05:00
parent e7e6fdc24c
commit a20ff90106
43 changed files with 3317 additions and 1143 deletions

View File

@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';
import styled, { css } from 'styled-components/macro';
import React, {useState, useEffect} from 'react';
import styled, {css} from 'styled-components/macro';
const InputWrapper = styled.div<{ width: string }>`
const InputWrapper = styled.div<{width: string}>`
position: relative;
width: ${props => props.width};
display: flex;
@ -14,7 +14,7 @@ const InputWrapper = styled.div<{ width: string }>`
margin-top: 24px;
`;
const InputLabel = styled.span<{ width: string }>`
const InputLabel = styled.span<{width: string}>`
width: ${props => props.width};
padding: 0.7rem !important;
color: #c2c6dc;