UX: fix width for top embedded reply, post notice (#20546)

This commit is contained in:
Kris 2023-03-06 11:24:49 -05:00 committed by GitHub
parent e27c045f75
commit 6fc2cded55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1438,6 +1438,7 @@ span.mention {
}
.post-notice {
box-sizing: border-box;
align-items: center;
background-color: var(--tertiary-low);
border-top: 1px solid var(--primary-low);

View File

@ -203,7 +203,7 @@ pre.codeblock-buttons:hover {
margin-left: var(--topic-avatar-width);
width: calc(
var(--topic-body-width) + (var(--topic-body-width-padding) * 2) +
var(--topic-avatar-width) - (var(--topic-avatar-width + 2px))
var(--topic-avatar-width) - (var(--topic-avatar-width) + 2px)
); // 2px accounts for left and right borders
.row {
border-bottom: none;