Merge pull request #872 from mattias-symphony/master

fix: SDA-1501 Using ellipsis for notification title overflow
This commit is contained in:
mattias-symphony 2020-02-11 15:36:08 +01:00 committed by GitHub
commit fd67a5cd31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,13 +62,17 @@ body {
.title {
font-family: sans-serif;
font-size: 14px;
font-weight: 700;
color: var(--text-color);
width: 100%;
overflow-wrap: break-word;
font-size: 14px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
cursor: default;
text-overflow: ellipsis;
color: var(--text-color);
}
.company {