diff --git a/src/AddHostModal.jsx b/src/AddHostModal.jsx index 1b46d0dc..51f097ae 100644 --- a/src/AddHostModal.jsx +++ b/src/AddHostModal.jsx @@ -9,8 +9,8 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd setIsAddHostHidden(true)}> setForm({ ...form, name: e.target.value })} required={false} sx={{ - backgroundColor: theme.palette.neutral[500], + backgroundColor: theme.palette.general.primary, color: theme.palette.text.primary, }} /> @@ -43,7 +43,7 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd onChange={(e) => setForm({ ...form, ip: e.target.value })} required sx={{ - backgroundColor: theme.palette.neutral[500], + backgroundColor: theme.palette.general.primary, color: theme.palette.text.primary, }} /> @@ -55,7 +55,7 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd onChange={(e) => setForm({ ...form, user: e.target.value })} required sx={{ - backgroundColor: theme.palette.neutral[500], + backgroundColor: theme.palette.general.primary, color: theme.palette.text.primary, }} /> @@ -68,7 +68,7 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd onChange={(e) => setForm({ ...form, password: e.target.value })} required sx={{ - backgroundColor: theme.palette.neutral[500], + backgroundColor: theme.palette.general.primary, color: theme.palette.text.primary, }} /> @@ -83,7 +83,7 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd required error={form.port < 1 || form.port > 65535 ? "Port must be between 1 and 65535" : ""} sx={{ - backgroundColor: theme.palette.neutral[500], + backgroundColor: theme.palette.general.primary, color: theme.palette.text.primary, }} /> @@ -91,9 +91,9 @@ const AddHostModal = ({ isHidden, form, setForm, handleAddHost, setIsAddHostHidd + +
+
+
+

Launchpad

+

W.I.P. Feature

+ +
+
- +
); } diff --git a/src/TabList.jsx b/src/TabList.jsx index 6ac09e53..cb4ebf26 100644 --- a/src/TabList.jsx +++ b/src/TabList.jsx @@ -10,22 +10,21 @@ function TabList({ terminals, activeTab, setActiveTab, closeTab, toggleSplit, sp const isActive = terminal.id === activeTab; const isSplit = splitTabIds.includes(terminal.id); - // Disable split screen button for the active tab (before and after splitting) const isSplitButtonDisabled = isActive && !isSplitScreenActive || splitTabIds.length >= 3 && !isSplit; return (
- {/* Set active tab button */} + {/* Set Active Tab Button */} - {/* Split screen button */} + {/* Split Screen Button */} - {/* Close tab button */} + {/* Close Tab Button */}