Browse Source
Feature/improve style of system message (#4806)
* Improve style of system message
* Update changelog
pull/4807/head
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
6 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/app.component.html
-
apps/client/src/app/app.component.scss
|
|
@ -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`) |
|
|
|
|
|
@ -10,7 +10,7 @@ |
|
|
|
(click)="onCreateAccount()" |
|
|
|
> |
|
|
|
<span i18n>You are using the Live Demo.</span> |
|
|
|
<span class="a ml-2" i18n>Create Account</span> |
|
|
|
<span class="a ml-2 p-1" i18n>Create Account</span> |
|
|
|
</div></a |
|
|
|
> |
|
|
|
} |
|
|
|
|
|
@ -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; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|