From a50ea6dcf7712f4664b8c4a6bb01150beff41cab Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Sat, 31 May 2025 22:56:57 +0200
Subject: [PATCH] Improve style of system message
---
apps/client/src/app/app.component.html | 2 +-
apps/client/src/app/app.component.scss | 6 ++++--
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html
index a04e457ba..9680d0830 100644
--- a/apps/client/src/app/app.component.html
+++ b/apps/client/src/app/app.component.html
@@ -10,7 +10,7 @@
(click)="onCreateAccount()"
>
You are using the Live Demo.
- Create Account
+ Create Account
}
diff --git a/apps/client/src/app/app.component.scss b/apps/client/src/app/app.component.scss
index 241d3331e..f848fe6ff 100644
--- a/apps/client/src/app/app.component.scss
+++ b/apps/client/src/app/app.component.scss
@@ -15,12 +15,14 @@
z-index: 999;
.info-message {
- color: rgba(var(--palette-foreground-text), 1);
+ color: rgba(var(--light-primary-text));
font-size: 80%;
+ font-weight: 500;
max-width: 100%;
.a {
- font-weight: 500;
+ border: 1px solid rgba(var(--light-primary-text));
+ border-radius: 0.25rem;
}
}
}