Merge pull request #2357 from basecamp/comment-boost-overlap

Prevent comment content from overlapping with reaction button
This commit is contained in:
Andy Smith
2026-01-13 14:17:58 -06:00
committed by GitHub
+7
View File
@@ -109,6 +109,13 @@
&:not:has(lexxy-editor) {
padding-inline-end: var(--reaction-size);
}
/* Add an empty space so the last line of text doesn't overlap with the reaction button */
.action-text-content > p:last-child::after {
content: "";
display: inline-block;
inline-size: var(--reaction-size);
}
}
.comment__content {