diff --git a/epicyon-profile.css b/epicyon-profile.css index c77389a20..32908b13d 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -758,6 +758,15 @@ a:focus { vertical-align: middle; } +.container img.postScopeIcon { + float: none; + width: 30px; + margin: 0 0; + padding: 0 0; + border-radius: 0; + vertical-align: middle; +} + .container.darker { background-color: var(--main-bg-color-reply); } diff --git a/webapp_post.py b/webapp_post.py index 09368de6f..f16d78cbf 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -2188,17 +2188,17 @@ def individual_post_as_html(signing_priv_key_pem: str, if is_followers_post(post_json_object): title_str += \ ' \n' elif is_unlisted_post(post_json_object): title_str += \ ' \n' elif is_reminder(post_json_object): title_str += \ ' \n' display_name = get_display_name(base_dir, post_actor, person_cache)