diff --git a/.eslintignore b/.eslintignore index cb7239b8..ec297d25 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,6 +2,5 @@ public build build-devel coverage -images node_modules src/flowtype/npm \ No newline at end of file diff --git a/src/components/DeviceHeader/index.js b/src/components/DeviceHeader/index.js index 8315b326..6eba69a0 100644 --- a/src/components/DeviceHeader/index.js +++ b/src/components/DeviceHeader/index.js @@ -12,7 +12,7 @@ import colors from 'config/colors'; const Wrapper = styled.div` position: relative; - height: 64px; + height: 70px; width: 320px; display: flex; align-items: center; diff --git a/src/components/Footer/index.js b/src/components/Footer/index.js index 8f19462c..2b988cba 100644 --- a/src/components/Footer/index.js +++ b/src/components/Footer/index.js @@ -16,6 +16,7 @@ const Wrapper = styled.div` color: ${colors.TEXT_SECONDARY}; padding: 22px 48px; display: flex; + border-top: 1px solid ${colors.BACKGROUND}; `; const StyledLink = styled(Link)` diff --git a/src/components/Header/index.js b/src/components/Header/index.js index 75a9862b..6703177d 100644 --- a/src/components/Header/index.js +++ b/src/components/Header/index.js @@ -41,6 +41,7 @@ const Right = styled.div``; const A = styled.a` color: ${colors.WHITE}; margin-left: 24px; + transition: all .1s ease-in; &:visited { color: ${colors.WHITE}; diff --git a/src/components/Select/index.js b/src/components/Select/index.js index 5e94cdd3..5c6bef36 100644 --- a/src/components/Select/index.js +++ b/src/components/Select/index.js @@ -13,7 +13,7 @@ const styles = isSearchable => ({ control: (base, { isDisabled }) => ({ ...base, minHeight: 'initial', - height: '100%', + height: '40px', borderRadius: '2px', borderColor: colors.DIVIDER, boxShadow: 'none', diff --git a/src/components/Textarea/index.js b/src/components/Textarea/index.js index 2d21bebf..d67ba8d7 100644 --- a/src/components/Textarea/index.js +++ b/src/components/Textarea/index.js @@ -13,7 +13,7 @@ const Wrapper = styled.div` const disabledColor = colors.TEXT_PRIMARY; -const TextArea = styled.textarea` +const StyledTextarea = styled.textarea` width: 100%; min-height: 85px; margin-bottom: 10px; @@ -124,7 +124,8 @@ const Textarea = ({ {topLabel && ( {topLabel} )} -