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
pull/80373/head
Ashley Harrison 1 year ago committed by GitHub
parent 4bf5c63657
commit 12135998e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/features/profile/UserProfileEditPage.tsx

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

Loading…
Cancel
Save