diff --git a/CHANGELOG.md b/CHANGELOG.md
index 92a277712..2c5a2771d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
+- Improved the style of the system message
- Improved the language localization for German (`de`)
- Improved the language localization for Turkish (`tr`)
- Improved the language localization for Ukrainian (`uk`)
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;
}
}
}