From 744e86b290e5467d13fce2bd7249816c0c718911 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 16:20:54 +0200 Subject: [PATCH] style: match /me profile card width to highlight cards - Constrain AuthorCard width via header context - Remove extra padding on .me-highlights-list so widths align - Keeps both at 600px max with auto centering --- src/styles/components/me.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/components/me.css b/src/styles/components/me.css index 51cedc50..72784ce2 100644 --- a/src/styles/components/me.css +++ b/src/styles/components/me.css @@ -54,6 +54,10 @@ width: 100%; } +/* Align highlight list width with profile card width on /me */ +.me-highlights-list { padding-left: 0; padding-right: 0; } +.explore-header .author-card { max-width: 600px; margin: 0 auto; width: 100%; } + /* Bookmarks list */ .bookmarks-list { display: flex;