Skip to content

Commit

Permalink
Adjusted file size
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikketer committed Dec 10, 2023
1 parent aee5513 commit be26054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
// If it's just too large (many colors?) it'll be too slow
if (file.size > 3000) {
if (file.size > 4000) {
return reject('File is too large')
}
Expand Down
2 changes: 1 addition & 1 deletion src/Settings.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<main class={className}>
<img alt="preview" class="preview" id="preview" />
<div style="display: flex; flex-direction: row; justify-content: space-between">
<label for="image">Upload &lt; 48x48 PNG:</label>
<label for="image">Upload &lt; 48x48 &lt; 4KB PNG:</label>
</div>
<input
class="nes-input"
Expand Down

0 comments on commit be26054

Please sign in to comment.