aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/error-message/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/error-message/index.scss')
-rw-r--r--ui/app/components/error-message/index.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/app/components/error-message/index.scss b/ui/app/components/error-message/index.scss
new file mode 100644
index 000000000..5915e21cf
--- /dev/null
+++ b/ui/app/components/error-message/index.scss
@@ -0,0 +1,21 @@
+.error-message {
+ min-height: 32px;
+ border: 1px solid $monzo;
+ color: $monzo;
+ background: lighten($monzo, 56%);
+ border-radius: 4px;
+ font-size: .75rem;
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ padding: 8px 16px;
+
+ &__icon {
+ margin-right: 8px;
+ flex: 0 0 auto;
+ }
+
+ &__text {
+ overflow: auto;
+ }
+}