diff --git a/src/components/error-display/error-display.module.css b/src/components/error-display/error-display.module.css index 780b1278..85a42066 100644 --- a/src/components/error-display/error-display.module.css +++ b/src/components/error-display/error-display.module.css @@ -27,6 +27,10 @@ white-space: nowrap; } +.copyErrorBracket { + color: var(--body-font-color); +} + .copyErrorButton { all: unset; font: inherit; diff --git a/src/components/error-display/error-display.tsx b/src/components/error-display/error-display.tsx index 93dcda20..2e5af7a9 100644 --- a/src/components/error-display/error-display.tsx +++ b/src/components/error-display/error-display.tsx @@ -79,11 +79,11 @@ const ErrorDisplay = ({ error, displayMessage, inline = false, showImmediately = {originalDisplayMessage && {originalDisplayMessage}} {canCopyError && ( - [ + [ - ] + ] )} diff --git a/src/components/failed-publish-notice.tsx b/src/components/failed-publish-notice.tsx index 2ff27575..3eaa95c7 100644 --- a/src/components/failed-publish-notice.tsx +++ b/src/components/failed-publish-notice.tsx @@ -23,19 +23,19 @@ const FailedPublishNotice = ({ isDeleting, isRetrying = false, onDelete, onRetry )} {onRetry && ( - [ + [ - ] + ] )}{' '} - [ + [ - ] + ] ); diff --git a/src/views/post/post.module.css b/src/views/post/post.module.css index dbb5b2b9..75aada2a 100644 --- a/src/views/post/post.module.css +++ b/src/views/post/post.module.css @@ -672,10 +672,13 @@ } .failedDeletePostAction { - color: var(--button-desktop-text-color); font-weight: 400; } +.failedDeletePostBracket { + color: var(--body-font-color); +} + .failedDeletePostButton { all: unset; font: inherit;