Message / Contact: Fix text overflow (#2087)

This commit is contained in:
Alexander Zinchuk 2022-10-29 15:18:32 +02:00
parent 5de819826e
commit f5d70de000

View File

@ -19,16 +19,20 @@
.contact-name { .contact-name {
font-size: 1rem; font-size: 1rem;
line-height: 1rem;
margin-bottom: 0.25rem; margin-bottom: 0.25rem;
font-weight: 500; font-weight: 500;
} }
.contact-phone { .contact-phone {
line-height: 1rem;
color: var(--secondary-color); color: var(--secondary-color);
} }
.contact-name,
.contact-phone {
line-height: 1rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
} }
} }