We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10895fe commit a86d471Copy full SHA for a86d471
1 file changed
packages/app/src/pages/SettingsArea.tsx
@@ -9,11 +9,11 @@ import { SpendingPage } from './Spending';
9
export function SettingsArea({ onBack }: { onBack?: () => void }): React.ReactElement {
10
const [tab, setTab] = useState('general');
11
return (
12
- <div className="mx-auto w-full max-w-3xl">
+ <div className="mx-auto w-full max-w-5xl">
13
{onBack && (
14
<button
15
onClick={onBack}
16
- className="mb-4 -ml-1 flex items-center gap-1.5 text-sm text-muted transition-colors hover:text-text"
+ className="mb-3 -ml-1 flex items-center gap-1.5 text-sm text-muted transition-colors hover:text-text"
17
>
18
<ArrowLeft className="h-4 w-4" strokeWidth={2} />
19
Back to app
0 commit comments