From e1b4eeb6367e0f4af64ed739ba20c9762dce43f5 Mon Sep 17 00:00:00 2001 From: Chike Nwaenie Date: Sun, 23 Apr 2023 21:33:08 +0100 Subject: [PATCH] Change styling of the recommended accounts to allow bio to be more visible (#24480) --- app/javascript/styles/mastodon/components.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index a0863004d..7c8d700ad 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -1459,9 +1459,11 @@ body > [data-popper-placement] { } &__note { - white-space: nowrap; overflow: hidden; text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; color: $ui-secondary-color; } }