From d059212238334f9541356e1dd15065ab0472d79d Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 10:36:36 +0200 Subject: [PATCH] style: constrain /me page content width to match author card (600px) --- src/styles/components/me.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/styles/components/me.css b/src/styles/components/me.css index 9bbd6269..78b3a5c1 100644 --- a/src/styles/components/me.css +++ b/src/styles/components/me.css @@ -5,6 +5,9 @@ margin-top: 1rem; border-bottom: 2px solid var(--border-color, #e0e0e0); overflow-x: auto; + max-width: 600px; + margin-left: auto; + margin-right: auto; } .me-tab { @@ -39,6 +42,9 @@ .me-tab-content { padding: 1.5rem 0; + max-width: 600px; + margin: 0 auto; + width: 100%; } /* Bookmarks list */ @@ -123,6 +129,7 @@ @media (max-width: 768px) { .me-tabs { gap: 0.25rem; + padding: 0 1rem; } .me-tab { @@ -133,5 +140,9 @@ .me-tab svg { font-size: 0.9rem; } + + .me-tab-content { + padding: 1.5rem 1rem; + } }