Browse Source
Feature/improve create account link in live demo (#1061)
* Improve router link
* Update changelog
pull/1064/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/app.component.html
-
apps/client/src/app/app.component.scss
|
|
@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added _Markets_ to the public pages |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the _Create Account_ link in the _Live Demo_ |
|
|
|
- Upgraded `ngx-markdown` from version `13.0.0` to `14.0.1` |
|
|
|
|
|
|
|
## 1.166.0 - 30.06.2022 |
|
|
|
|
|
@ -15,13 +15,17 @@ |
|
|
|
> |
|
|
|
<div class="row"> |
|
|
|
<div class="col-md-8 offset-md-2 text-center"> |
|
|
|
<a *ngIf="canCreateAccount" class="text-center" [routerLink]="['/']"> |
|
|
|
<a |
|
|
|
*ngIf="canCreateAccount" |
|
|
|
class="text-center" |
|
|
|
[routerLink]="['/register']" |
|
|
|
> |
|
|
|
<div |
|
|
|
class="cursor-pointer d-inline-block info-message px-3 py-2" |
|
|
|
(click)="onCreateAccount()" |
|
|
|
> |
|
|
|
<span i18n>You are using the Live Demo.</span> |
|
|
|
<a class="ml-2" href="#" i18n>Create Account</a> |
|
|
|
<span class="a ml-2" i18n>Create Account</span> |
|
|
|
</div></a |
|
|
|
> |
|
|
|
<div |
|
|
|
|
|
@ -17,7 +17,7 @@ |
|
|
|
border-radius: 2rem; |
|
|
|
font-size: 80%; |
|
|
|
|
|
|
|
a { |
|
|
|
.a { |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
|
font-weight: 500; |
|
|
|
} |
|
|
|