Skip to content

Commit

Permalink
Fix UI styles (#57)
Browse files Browse the repository at this point in the history
Fix UI styles
  • Loading branch information
lucasbento committed Jul 10, 2019
2 parents b47751a + a29a33e commit 4650555
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/__snapshots__/App.spec.js.snap
Expand Up @@ -16,7 +16,7 @@ exports[`renders without crashing 1`] = `
>
<img
alt="React Native upgrade helper logo"
class="sc-kkGfuU kCopwy"
class="sc-kkGfuU hnQnKK"
src="logo.svg"
title="React Native upgrade helper logo"
/>
Expand Down Expand Up @@ -101,7 +101,7 @@ exports[`renders without crashing 1`] = `
class="sc-bdVaJa UoSJW"
>
<h4>
To which version would you like to update?
To which version would you like to upgrade?
</h4>
<div
class="ant-select-lg sc-ifAKCX dTveGH sc-bwzfXH jwfMIB ant-select ant-select-enabled ant-select-loading"
Expand Down
7 changes: 7 additions & 0 deletions src/assets/loading.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/common/Loading.js
@@ -1,6 +1,6 @@
import React from 'react'
import styled, { keyframes } from 'styled-components'
import logo from '../../logo.svg'
import logo from '../../assets/loading.svg'

const rotate = keyframes`
from {
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/VersionSelector.js
Expand Up @@ -246,7 +246,7 @@ const VersionSelector = ({ showDiff }) => {
/>

<ToVersionSelector
title="To which version would you like to update?"
title="To which version would you like to upgrade?"
loading={isLoading}
value={localToVersion}
options={toVersionList}
Expand Down
3 changes: 2 additions & 1 deletion src/components/pages/Home.js
Expand Up @@ -6,7 +6,7 @@ import ReactGA from 'react-ga'
import VersionSelector from '../common/VersionSelector'
import DiffViewer from '../common/DiffViewer'
import { homepage } from '../../../package.json'
import logo from '../../logo.svg'
import logo from '../../assets/logo.svg'

const Page = styled.div`
display: flex;
Expand All @@ -28,6 +28,7 @@ const TitleContainer = styled.div`

const LogoImg = styled.img`
width: 100px;
margin-bottom: 15px;
`

const TitleHeader = styled.h1`
Expand Down

0 comments on commit 4650555

Please sign in to comment.