Skip to content

Commit 1fc4fe6

Browse files
authored
Fix width of settings sections when only a single column is visible (#11138)
- Fix settings columns having zero width when only a single column is visible # Important Notes None
1 parent 7c41329 commit 1fc4fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/dashboard/src/layouts/Settings/SettingsTab.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default function SettingsTab(props: SettingsTabProps) {
8080
<div
8181
key={i}
8282
className={tailwindMerge.twMerge(
83-
'flex h-fit w-0 flex-1 flex-col gap-settings-subsection pb-12',
83+
'flex h-fit flex-1 flex-col gap-settings-subsection pb-12',
8484
classes[i],
8585
)}
8686
>

0 commit comments

Comments
 (0)