Add search bar in header
This commit is contained in:
@@ -35,8 +35,14 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div fxFlex="50px">
|
||||
<!-- Search input -->
|
||||
<div>
|
||||
|
||||
<mat-form-field appearance="fill">
|
||||
<mat-label>Fill form field</mat-label>
|
||||
<input matInput placeholder="Placeholder">
|
||||
<mat-icon matSuffix>search</mat-icon>
|
||||
</mat-form-field>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { AuthService } from '@app/core/services/auth/auth.service';
|
||||
import { AuthService } from '@app/core/services/auth/auth.service';
|
||||
|
||||
@Component( {
|
||||
selector: 'app-header',
|
||||
@@ -8,7 +8,7 @@ import { AuthService } from '@app/core/services/auth/auth.service';
|
||||
} )
|
||||
export class HeaderComponent implements OnInit {
|
||||
|
||||
constructor(private authService: AuthService) {
|
||||
constructor( private authService: AuthService ) {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
||||
Reference in New Issue
Block a user