style: enhance SettingsLayout and AppointmentSettingsPage for improved layout and spacing

This commit is contained in:
hamed
2026-07-15 17:35:24 +03:30
parent ffc4351038
commit 952fcf3634
3 changed files with 9 additions and 6 deletions
@@ -49,11 +49,8 @@ export function menuForRole(role: string | null | undefined): SettingsMenuItem[]
*/ */
export default function SettingsLayout({ active, children }: { active: string; children: React.ReactNode }) { export default function SettingsLayout({ active, children }: { active: string; children: React.ReactNode }) {
return ( return (
<div className="fade-in" dir="rtl" style={{ width: '100%' }}> <div className="fade-in settings-shell" dir="rtl" style={{ width: '100%' }}>
<div <div className="grid grid-cols-1 lg:grid-cols-[248px_minmax(0,1fr)] gap-5">
className="grid grid-cols-1 lg:grid-cols-[248px_minmax(0,1fr)] gap-5"
style={{ marginInlineStart: 'calc(-1 * var(--gap))' }}
>
<PurchaseSubscriptionSidebar active={active} /> <PurchaseSubscriptionSidebar active={active} />
<div style={{ minWidth: 0 }}>{children}</div> <div style={{ minWidth: 0 }}>{children}</div>
</div> </div>
@@ -27,7 +27,10 @@ export default function AppointmentSettingsPage() {
return ( return (
<SettingsLayout active="appointment"> <SettingsLayout active="appointment">
<div style={{ background: 'var(--surface)', minWidth: 0 }}> <div
style={{ background: 'var(--surface)', minWidth: 0 }}
className="px-4 py-4 md:px-6 md:py-6 rounded-[var(--r-lg)]"
>
<h1 className="section-title" style={{ marginBottom: 16 }}>مدیریت نوبت دهی</h1> <h1 className="section-title" style={{ marginBottom: 16 }}>مدیریت نوبت دهی</h1>
<FreeVisitPrice /> <FreeVisitPrice />
+3
View File
@@ -317,6 +317,9 @@ body {
} }
.app[data-collapsed="true"] .main { margin-right: var(--collapsed-w); } .app[data-collapsed="true"] .main { margin-right: var(--collapsed-w); }
.content { padding: var(--gap); max-width: 1480px; width: 100%; margin: 0 auto; } .content { padding: var(--gap); max-width: 1480px; width: 100%; margin: 0 auto; }
/* Settings pages go full-bleed: no max-width centering, and the settings menu
sits flush against the main nav (drop the inline-start / right padding). */
.content:has(> .settings-shell) { max-width: none; padding-inline-start: 0; }
/* ── Sidebar ─────────────────────────────────────────────────── */ /* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { .sidebar {