From a51a70da0ae75aec4e552774342b881d11b2c98f Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 22 Apr 2024 03:31:51 +0200 Subject: [PATCH] fix(web): img max width, slim activity header --- web/index.html | 7 +++++++ web/src/components/activity.rs | 28 ++++++++++++---------------- 2 files changed, 19 insertions(+), 16 deletions(-) diff --git a/web/index.html b/web/index.html index d20e004..a540ce5 100644 --- a/web/index.html +++ b/web/index.html @@ -154,6 +154,7 @@ } img.attachment { max-height: 15em; + max-width: 90%; border: 5px solid #bf616a; padding: 5px; } @@ -184,7 +185,13 @@ color: var(--background); cursor: pointer; } + .ml-1-r { + margin-left: 1em; + } @media screen and (max-width: 786px) { + .ml-1-r { + margin-left: 0; + } .hidden-on-mobile { display: none; } diff --git a/web/src/components/activity.rs b/web/src/components/activity.rs index dbcc478..bdfc079 100644 --- a/web/src/components/activity.rs +++ b/web/src/components/activity.rs @@ -16,22 +16,18 @@ pub fn ActivityLine(activity: serde_json::Value) -> impl IntoView { let kind = activity.activity_type().unwrap_or(apb::ActivityType::Activity); view! {
- - - - - -
- - {username}@{domain} - - - {kind.as_ref().to_string()} - - - - -
+ + {username}@{domain} + + + {kind.as_ref().to_string()} + + + + + + +
} }