From 95548d27426618d2ba9d0b60c07ddb2d1fc41a7e Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 1 Jun 2023 19:42:12 +0200 Subject: [PATCH] Created the ErrorArea styles.sass --- .../common/components/ErrorArea/styles.sass | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 client/src/common/components/ErrorArea/styles.sass diff --git a/client/src/common/components/ErrorArea/styles.sass b/client/src/common/components/ErrorArea/styles.sass new file mode 100644 index 0000000..dd675b7 --- /dev/null +++ b/client/src/common/components/ErrorArea/styles.sass @@ -0,0 +1,19 @@ +@import "@/common/styles/colors" + +.error-area + display: flex + align-items: center + border: 2px dashed $red + border-radius: 1.2rem + padding: 1rem 1rem + gap: 1rem + margin-bottom: 1rem + + svg + font-size: 24pt + color: $red + + h2 + color: $darker-white + margin: 0 + font-size: 20pt \ No newline at end of file