fix(client): Don't truncate challenge titles (#41124)
* Add wrap to challenge title * Remove max-height from challenge title
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user