fix(client): Don't truncate challenge titles (#41124)

* Add wrap to challenge title

* Remove max-height from challenge title
This commit is contained in:
Andrei Kochkin
2021-02-18 16:47:16 +03:00
committed by GitHub
parent 51ec477329
commit d7d25f502d

View File

@ -8,7 +8,7 @@
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-around;
font-size: 16px; font-size: 16px;
height: 25px; height: fit-content;
margin: 20px 0px 15px; margin: 20px 0px 15px;
} }
@ -85,9 +85,9 @@
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
max-height: 25px; max-height: fit-content;
word-wrap: none; word-wrap: none;
white-space: nowrap; white-space: pre-line;
flex-grow: 1; flex-grow: 1;
flex-shrink: 1; flex-shrink: 1;
padding: 0px 3px; padding: 0px 3px;