Remove unnecessary CSS property from header (#4227)

This CSS rule was causing conversation header text to be truncated even
when there was enough whitespace to display the entire text at certain
zoom levels and platforms.

Removing the property did not introduce any UI regressions from this
author's testing.

Fixes: #3168
This commit is contained in:
Noelle Leigh 2020-05-05 17:32:42 -04:00 committed by GitHub
parent 2c4ce6bcca
commit 95c9e7a6d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2664,8 +2664,6 @@ $timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05',
@include font-body-1-bold;
// width of avatar (28px) and our 6px left margin
max-width: calc(100% - 34px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;