Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AKAspanion committed May 9, 2021
1 parent faaadb3 commit 24084d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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>PWA Powered Music Player</title>
<title>Music Player PWA</title>
<script src="jsmediatags.js"></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "Music Player",
"name": "PWA Powered Music Player",
"name": "Music Player PWA",
"icons": [
{
"src": "favicon.ico",
Expand Down
2 changes: 1 addition & 1 deletion src/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function App() {
multiple
type="file"
ref={input}
accept="audio/mp3"
accept="audio/mp3,audio/wav,audio/ogg"
onChange={e => dispatch(ADD_SONGS(e.target.files))}
/>
<audio
Expand Down
2 changes: 1 addition & 1 deletion src/views/menu/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
.menu__item__name {
font-size: 18px;
overflow: hidden;
font-weight: 500;
font-weight: 400;
user-select: none;
white-space: nowrap;
letter-spacing: 2px;
Expand Down

0 comments on commit 24084d2

Please sign in to comment.