mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-12-23 12:15:11 +00:00
BETTERZON-31,
BETTERZON-50 info popover and footer had been changed.
This commit is contained in:
parent
64074b48e8
commit
93b17bc65f
16592
Frontend/package-lock.json
generated
16592
Frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -6,8 +6,8 @@
|
||||||
<div class='wrap' id="footer-icons">
|
<div class='wrap' id="footer-icons">
|
||||||
<div class="icons">
|
<div class="icons">
|
||||||
<a href="https://github.com/Mueller-Patrick/Betterzon" class="fa fa-github fa-4x icon-3d"></a>
|
<a href="https://github.com/Mueller-Patrick/Betterzon" class="fa fa-github fa-4x icon-3d"></a>
|
||||||
<a href="https://twitter.com/elonmusk" class="fa fa-twitter fa-4x icon-3d"></a>
|
<a href="https://blog.betterzon.xyz/" class="fa fa-info fa-4x icon-3d"></a>
|
||||||
<a href="https://www.facebook.com/TheElonmusk/" class="fa fa-facebook fa-4x icon-3d"></a>
|
<a href="https://github.com/Mueller-Patrick/Betterzon/wiki" class="fa fa-wikipedia-w fa-4x icon-3d"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class = "blocks" id="copyright">© COPYRIGHT 2020</div>
|
<div class = "blocks" id="copyright">© COPYRIGHT 2020</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,13 @@
|
||||||
<input *ngIf="showSearch===true" type="text" [(ngModel)]="searchInput" placeholder="Search" (keyup.enter)="startedSearch()">
|
<input *ngIf="showSearch===true" type="text" [(ngModel)]="searchInput" placeholder="Search" (keyup.enter)="startedSearch()">
|
||||||
</div>
|
</div>
|
||||||
<div class="profileIcon">
|
<div class="profileIcon">
|
||||||
Profile
|
<button mat-button [matMenuTriggerFor]="menu">Menu</button>
|
||||||
|
<mat-menu #menu="matMenu">
|
||||||
|
<button mat-menu-item>Option 1</button>
|
||||||
|
<button mat-menu-item>Option 2</button>
|
||||||
|
<button mat-menu-item>Option 3</button>
|
||||||
|
<button mat-menu-item>Option 4</button>
|
||||||
|
</mat-menu>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -4,8 +4,9 @@ import {Router} from '@angular/router';
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-header',
|
selector: 'app-header',
|
||||||
templateUrl: './header.component.html',
|
templateUrl: './header.component.html',
|
||||||
styleUrls: ['./header.component.css']
|
styleUrls: ['./header.component.css'],
|
||||||
})
|
})
|
||||||
|
|
||||||
export class HeaderComponent implements OnInit {
|
export class HeaderComponent implements OnInit {
|
||||||
searchInput: string;
|
searchInput: string;
|
||||||
@Input() showSearch: boolean;
|
@Input() showSearch: boolean;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user