Skip to content

Commit

Permalink
Styling/update title, minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbitt committed Nov 13, 2019
1 parent 7f9ca84 commit 5d153dc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Trace.moe React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "Trace",
"name": "Trace.moe React",
"icons": [
{
"src": "favicon.ico",
Expand Down
4 changes: 4 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@
vertical-align: top;
padding-top: 8px;
}

a {
color: lightskyblue;
}
8 changes: 7 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ function App(props) {
<h4>Trace the original anime from a screenshot.</h4>
<PaperDropzone {...props} />
<h2 style={{ color: "orange" }}>OR</h2>
<URLForm {...props}/>
<URLForm {...props} />
<LoadingSpinnerComponent />
<a
href="https://github.com/soruly/trace.moe"
style={{ fontSize: "15px", paddingTop: '2em'}}
>
https://github.com/soruly/trace.moe
</a>
</header>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/PaperDropzone.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function PaperDropzone(props) {

const { getRootProps, getInputProps } = useDropzone({
onDrop,
accept: "image/jpeg, image/png",
accept: "image/jpeg, image/png, image/bmp, image/gif",
multiple: false
});
const { ref, ...rootProps } = getRootProps();
Expand Down

0 comments on commit 5d153dc

Please sign in to comment.