diff --git a/clients/web/assets/style.css b/clients/web/assets/style.css index 428d693..e81e0de 100644 --- a/clients/web/assets/style.css +++ b/clients/web/assets/style.css @@ -161,7 +161,7 @@ body { /* ── Stats grid ──────────────────────────────────────────────────── */ .stats-grid { display: grid; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; } diff --git a/clients/web/src/portal/profile.rs b/clients/web/src/portal/profile.rs index bd3c9c2..c727bbd 100644 --- a/clients/web/src/portal/profile.rs +++ b/clients/web/src/portal/profile.rs @@ -41,7 +41,12 @@ fn ProfileContent(profile: UserProfile, username: String) -> impl IntoView { Locale::en => "en-GB", Locale::fr => "fr-FR", }; - let joined = api::format_ts(profile.created_at, locale_tag, &api::DateFormatOptions::date_only()); + let date_format = api::DateFormatOptions { + date_style: Some("long"), + time_style: None, + }; + let joined = api::format_ts(profile.created_at, locale_tag, &date_format); + // let joined = api::format_ts(profile.created_at, locale_tag, &api::DateFormatOptions::date_only()); view! {