Fix overflow on mobile due to long name of a commentor

This commit is contained in:
Helen Chong 2024-07-24 13:10:13 +08:00
parent 7786be093e
commit f4410db8b3
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,7 @@ gw-comment-card.collapsed .comment-header-right time { display: none; }
.comment-header {
display: grid;
grid-template-columns: 0fr max-content 1fr;
grid-template-columns: 0fr auto 1fr;
gap: 0.4em;
align-items: baseline;
}
@ -136,4 +136,5 @@ gw-comment-card.collapsed .comment-header-right time { display: none; }
.commenter-name {
font-size: 1.1em;
font-weight: 700;
overflow-wrap: break-word;
}