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
parent
commit
90f2e8101c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/app.component.html
  3. 6
      apps/client/src/app/app.component.scss

1
CHANGELOG.md

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the style of the system message
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)
- Improved the language localization for Turkish (`tr`) - Improved the language localization for Turkish (`tr`)
- Improved the language localization for Ukrainian (`uk`) - Improved the language localization for Ukrainian (`uk`)

2
apps/client/src/app/app.component.html

@ -10,7 +10,7 @@
(click)="onCreateAccount()" (click)="onCreateAccount()"
> >
<span i18n>You are using the Live Demo.</span> <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 </div></a
> >
} }

6
apps/client/src/app/app.component.scss

@ -15,12 +15,14 @@
z-index: 999; z-index: 999;
.info-message { .info-message {
color: rgba(var(--palette-foreground-text), 1); color: rgba(var(--light-primary-text));
font-size: 80%; font-size: 80%;
font-weight: 500;
max-width: 100%; max-width: 100%;
.a { .a {
font-weight: 500; border: 1px solid rgba(var(--light-primary-text));
border-radius: 0.25rem;
} }
} }
} }

Loading…
Cancel
Save