Fix overflow on mobile due to long name of a commentor
This commit is contained in:
parent
7786be093e
commit
f4410db8b3
|
@ -110,7 +110,7 @@ gw-comment-card.collapsed .comment-header-right time { display: none; }
|
||||||
|
|
||||||
.comment-header {
|
.comment-header {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 0fr max-content 1fr;
|
grid-template-columns: 0fr auto 1fr;
|
||||||
gap: 0.4em;
|
gap: 0.4em;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
}
|
}
|
||||||
|
@ -136,4 +136,5 @@ gw-comment-card.collapsed .comment-header-right time { display: none; }
|
||||||
.commenter-name {
|
.commenter-name {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue