Back to vertical tabs in workspace settings

This commit is contained in:
Gregory Schier
2025-11-10 06:21:26 -08:00
parent 2f60b7b1f3
commit d318546d0c
3 changed files with 5 additions and 6 deletions

View File

@@ -181,7 +181,7 @@ export function Workspace() {
<div className="absolute inset-0 pointer-events-none">
<div // Add subtle background
style={environmentBgStyle}
className="absolute inset-0 opacity-5"
className="absolute inset-0 opacity-[0.07]"
/>
<div // Add a subtle border bottom
style={environmentBgStyle}

View File

@@ -63,17 +63,17 @@ export function WorkspaceSettingsDialog({ workspaceId, hide, tab }: Props) {
return (
<Tabs
layout="horizontal"
value={activeTab}
onChangeValue={setActiveTab}
label="Folder Settings"
className="pt-2 pb-2 pl-3 pr-1"
className="pt-4 pb-2 px-3"
tabListClassName="pl-4"
addBorders
tabs={[
{ value: TAB_GENERAL, label: 'General' },
{ value: TAB_GENERAL, label: 'Workspace' },
{
value: TAB_DATA,
label: 'Data',
label: 'Storage',
},
...headersTab,
...authTab,