diff --git a/client/src/App.tsx b/client/src/App.tsx index 0df90db..2db5f4a 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -33,7 +33,7 @@ function App() { }; return ( -
+
diff --git a/client/src/ImageInput.tsx b/client/src/ImageInput.tsx index 3156e88..60277cc 100644 --- a/client/src/ImageInput.tsx +++ b/client/src/ImageInput.tsx @@ -39,7 +39,26 @@ function ImageInput({ onImageSubmit }: Props) { type="file" accept="image/png, image/jpeg" ref={fileInputRef} - className="block w-full mt-1 text-sm text-nord-0 file:mr-4 file:py-2 file:px-4 file:border-0 file:text-sm file:font-semibold file:bg-nord-4 file:text-nord-0 hover:file:bg-nord-5" + className={ + "block " + + "w-full " + + "mt-1 " + + "text-sm " + + "text-nord-0 " + + "dark:text-nord-5 " + + "file:mr-4 " + + "file:py-2 " + + "file:px-4 " + + "file:border-0 " + + "file:text-sm " + + "file:font-semibold " + + "file:bg-nord-4 " + + "dark:file:bg-nord-1 " + + "file:text-nord-0 " + + "dark:file:text-nord-5 " + + "hover:file:bg-nord-5 " + + "dark:hover:file:bg-nord-2" + } />