diff --git a/src/components/FileInput.tsx b/src/components/FileInput.tsx
index e80038c..7a094fa 100644
--- a/src/components/FileInput.tsx
+++ b/src/components/FileInput.tsx
@@ -18,9 +18,9 @@ export function FileInput({ children, onReceiveFiles }: FileInputProps) {
{...getRootProps()}
className={classnames(
'w-full max-w-xl border rounded-lg transition duration-500 p-6 border-base-300 mx-auto',
- 'cursor-pointer flex flex-col items-center hover:border-gray-400 hover:bg-gray-50',
+ 'cursor-pointer flex flex-col items-center bg-base-200 hover:border-gray-400 hover:bg-gray-50 hover:dark:bg-gray-800',
{
- 'bg-blue-50 border-blue-700': isDragActive,
+ 'bg-blue-50 dark:bg-blue-900 border-blue-700': isDragActive,
},
)}
tabIndex={0}
diff --git a/src/components/InstructionsTabs.tsx b/src/components/InstructionsTabs.tsx
index 0b5289c..16ff69a 100644
--- a/src/components/InstructionsTabs.tsx
+++ b/src/components/InstructionsTabs.tsx
@@ -15,17 +15,20 @@ export interface InstructionsTabsProps {
export function InstructionsTabs({ limitHeight = false, tabs }: InstructionsTabsProps) {
const id = useId();
return (
-
+
{tabs.map(({ id: _tabId, label, content }, index) => (
-