-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(navbar): refactor navbar component template files
- Loading branch information
Showing
2 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
libs/flowbite-angular/src/lib/components/navbar/navbar.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<nav | ||
class="border-gray-200 bg-white px-2 py-2.5 dark:border-gray-700 dark:bg-gray-800 sm:px-4" | ||
[ngClass]="[rounded ? 'rounded' : '', border ? 'border' : '', extraClass]" | ||
> | ||
<div | ||
class="mx-auto flex flex-wrap items-center justify-between" | ||
[ngClass]="{ container: !fluid }" | ||
> | ||
<ng-content></ng-content> | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters