[MM-34527] fix reload and long names (#1524)

This commit is contained in:
Guillermo Vayá
2021-04-07 00:48:19 +02:00
committed by GitHub
parent dd41c3a14d
commit 923212780a
5 changed files with 25 additions and 8 deletions

View File

@@ -16,6 +16,8 @@
.TabBar .teamTabItem span {
flex: 0 1 auto;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
white-space: nowrap;
text-align: center;
}

View File

@@ -18,9 +18,14 @@
}
.TeamListItem p {
overflow-wrap: break-word;
overflow-wrap: break-word;
}
.TeamListItem h4 {
overflow: hidden;
text-overflow: ellipsis;
};
.checkbox > label {
width: 100%;
}