diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-25 14:11:27 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-25 14:11:27 +0200 |
| commit | d9d76c97bd76ddd503739d94f88eb15905bb4f3b (patch) | |
| tree | bc5fdb152063a6a526182e1d23bd25c20fd5bafd /src/app/components/login | |
| parent | c4c85daf3eedbbfb6d9cf615b1a7d96fe26d8112 (diff) | |
| download | DevHive-Angular-d9d76c97bd76ddd503739d94f88eb15905bb4f3b.tar DevHive-Angular-d9d76c97bd76ddd503739d94f88eb15905bb4f3b.tar.gz DevHive-Angular-d9d76c97bd76ddd503739d94f88eb15905bb4f3b.zip | |
Reverted mark elements to divs, because mark has a style already
Diffstat (limited to 'src/app/components/login')
| -rw-r--r-- | src/app/components/login/login.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/components/login/login.component.html b/src/app/components/login/login.component.html index b641fcb..9f74faa 100644 --- a/src/app/components/login/login.component.html +++ b/src/app/components/login/login.component.html @@ -8,9 +8,9 @@ <input type="text" placeholder="Username" class="input-field" formControlName="username" required> <label class="input-field-label">Username</label> - <mark class="input-errors"> + <div class="input-errors"> <label *ngIf="loginUserFormGroup.get('username')?.errors?.required" class="error">*Required</label> - </mark> + </div> </section> <section class="input-selection"> |
