diff --git a/packages/editor/src/components/error-boundary/index.native.js b/packages/editor/src/components/error-boundary/index.native.js index 6f76a4fbdccfe5..d627bfa0e7893c 100644 --- a/packages/editor/src/components/error-boundary/index.native.js +++ b/packages/editor/src/components/error-boundary/index.native.js @@ -147,7 +147,7 @@ class ErrorBoundary extends Component { { __( - 'The editor has encountered an unexpected error.' + 'The editor has encountered an unexpected error' ) } diff --git a/packages/editor/src/components/error-boundary/style.native.scss b/packages/editor/src/components/error-boundary/style.native.scss index 6c461207768679..f3f26ba4c0b200 100644 --- a/packages/editor/src/components/error-boundary/style.native.scss +++ b/packages/editor/src/components/error-boundary/style.native.scss @@ -32,7 +32,7 @@ } .error-boundary__icon-container--dark { - background-color: $gray-20; + background-color: rgba(235, 235, 245, 0.3); } .error-boundary__icon { @@ -64,7 +64,7 @@ } .error-boundary__message--dark { - color: $white; + color: rgba(235, 235, 245, 0.6); } .error-boundary__actions-container { @@ -82,7 +82,7 @@ } .copy-button__container--dark { - background-color: $gray-20; + background-color: $white; } .copy-button__container--secondary { @@ -91,6 +91,7 @@ } .copy-button__container--secondary-dark { + border-color: rgba(255, 255, 255, 0.3); background-color: $black; }