Proper text overflow for long player names

This commit is contained in:
Andrew Guibert 2018-04-05 13:20:07 -05:00
parent e389eef652
commit 35cb80465a
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@ p {
margin: 0 10px;
color: white;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
}
img {

View File

@ -1,7 +1,7 @@
:host {
display: grid;
grid-template-rows: repeat(2, 1fr);
grid-template-columns: 50px 1fr 1fr;
grid-template-columns: 50px repeat(2, calc(50% - 25px));
min-height: 100%;
align-content: center;