UX: Prevent long names from overflowing on user profiles

This commit is contained in:
Kris 2019-05-22 15:03:50 -04:00
parent 881c832a2f
commit 9f6af5f8a7
2 changed files with 7 additions and 0 deletions

View File

@ -122,6 +122,12 @@
a[href] {
text-decoration: underline;
}
h1 {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.location-and-website {
display: flex;
max-width: 100%;

View File

@ -119,6 +119,7 @@
flex: 1 1 100%;
word-break: break-word;
margin: 0;
max-width: 100%;
}
.bio {