Update CSS classes in settings UI components
This commit updates the CSS classes for the team account settings container and the settings page to increase their width. By replacing the existing classes with "w-full", both components will now take up the full width of their parent element, improving the layout responsiveness.
This commit is contained in:
@@ -47,7 +47,7 @@ async function TeamAccountSettingsPage(props: Props) {
|
||||
<PageBody>
|
||||
<div
|
||||
className={
|
||||
'container mx-auto flex max-w-2xl flex-1 flex-col items-center'
|
||||
'container flex w-full max-w-2xl flex-1 flex-col items-center'
|
||||
}
|
||||
>
|
||||
<TeamAccountSettingsContainer account={account} paths={paths} />
|
||||
|
||||
@@ -27,7 +27,7 @@ export function TeamAccountSettingsContainer(props: {
|
||||
};
|
||||
}) {
|
||||
return (
|
||||
<div className={'flex flex-col space-y-8'}>
|
||||
<div className={'flex w-full flex-col space-y-8'}>
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>
|
||||
|
||||
Reference in New Issue
Block a user