Profile: Use Stack so the profile tabs span the full width of the page (#80353)

use Stack so the profile tabs span the full width of the page
This commit is contained in:
Ashley Harrison 2024-01-11 12:54:19 +00:00 committed by GitHub
parent 4bf5c63657
commit 12135998e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,7 +126,7 @@ export function UserProfileEditPage({
const UserProfileWithTabs = () => ( const UserProfileWithTabs = () => (
<div data-testid={selectors.components.UserProfile.extensionPointTabs}> <div data-testid={selectors.components.UserProfile.extensionPointTabs}>
<VerticalGroup spacing="md"> <Stack direction="column" gap={2}>
<TabsBar> <TabsBar>
{tabs.map(({ id, title }) => { {tabs.map(({ id, title }) => {
return ( return (
@ -160,7 +160,7 @@ export function UserProfileEditPage({
return null; return null;
})} })}
</TabContent> </TabContent>
</VerticalGroup> </Stack>
</div> </div>
); );