This commit is contained in:
2026-03-14 22:03:51 -05:00
parent ce2f94c17e
commit a6b24a6609
8 changed files with 76 additions and 76 deletions

View File

@@ -92,7 +92,7 @@ export function CompanySettingsPage() {
}, [logoUrl]);
if (!form || !token) {
return <div className="rounded-[28px] border border-line/70 bg-surface/90 p-8 text-sm text-muted shadow-panel">{status}</div>;
return <div className="rounded-[28px] border border-line/70 bg-surface/90 p-6 text-sm text-muted shadow-panel">{status}</div>;
}
async function handleSave(event: React.FormEvent<HTMLFormElement>) {
@@ -149,7 +149,7 @@ export function CompanySettingsPage() {
<div className="flex flex-col gap-6 lg:flex-row lg:items-start lg:justify-between">
<div>
<p className="text-xs font-semibold uppercase tracking-[0.24em] text-muted">Company Profile</p>
<h3 className="mt-3 text-2xl font-bold text-text">Branding and legal identity</h3>
<h3 className="mt-3 text-xl font-bold text-text">Branding and legal identity</h3>
<p className="mt-2 max-w-2xl text-sm text-muted">Every internal document and PDF template will inherit its company identity from this profile.</p>
</div>
<div className="rounded-3xl border border-dashed border-line/70 bg-page/80 p-4">
@@ -216,7 +216,7 @@ export function CompanySettingsPage() {
>
Preview PDF
</button>
<button type="submit" className="rounded-2xl bg-brand px-5 py-3 text-sm font-semibold text-white">
<button type="submit" className="rounded-2xl bg-brand px-3 py-2 text-sm font-semibold text-white">
Save changes
</button>
</div>