Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit 28e359a

Browse files
committed
fix(angular-ui): show header navigation on small screens
1 parent cff1a6e commit 28e359a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/angular-ui/src/components/header/header.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ import { Component, Input } from '@angular/core'
2323
</div>
2424
</div>
2525
26-
<div class="header-nav d-none d-lg-flex">
26+
<div class="header-nav">
2727
<div class="container">
2828
<div class="row align-items-center">
2929
<div class="col">
3030
<ui-menu [links]="config?.menu"></ui-menu>
3131
</div>
32-
<div class="col-3 ml-auto">
32+
<div class="col-3 ml-auto" *ngIf="config?.search">
3333
<form class="input-icon">
3434
<input type="search" class="form-control header-search" placeholder="Search&hellip;" tabindex="1">
3535
<div class="input-icon-addon">

0 commit comments

Comments
 (0)