Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 3dae2a8

Browse files
committed
change import sounds label to import sounds folder
1 parent 7cc44a8 commit 3dae2a8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

website/src/repl/components/panel/ImportSoundsButton.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ export default function ImportSoundsButton({ onComplete }) {
2121

2222
return (
2323
<label
24-
style={{ alignItems: 'center' }}
25-
className="flex bg-background ml-2 pl-2 pr-2 max-w-[300px] rounded-md hover:opacity-50 whitespace-nowrap cursor-pointer"
24+
style={{ alignItems: 'center',
25+
}}
26+
className="flex bg-background ml-2 pl-2 pr-2 max-w-[210px] rounded-md hover:opacity-50 whitespace-nowrap cursor-pointer"
2627
>
2728
<input
2829
disabled={isUploading}
@@ -38,7 +39,7 @@ export default function ImportSoundsButton({ onComplete }) {
3839
onChange();
3940
}}
4041
/>
41-
{isUploading ? 'importing...' : 'import sounds'}
42+
{isUploading ? 'importing...' : 'import sounds folder'}
4243
</label>
4344
);
4445
}

0 commit comments

Comments
 (0)