Skip to content

Commit

Permalink
🔧 z-index on navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-gn committed Oct 4, 2023
1 parent cdc3e71 commit 5568405
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

| Angular Version | NPM Package Version |
|-----------------|---------------------|
| ^16.1.4 | 16.1.8 |
| ^16.1.4 | 16.1.9 |
| 15.0.4 | 15.0.6 |
| 13.2.3 | 13.0.22 |
| < 13.0.0 | 0.0.77 |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mprisma/components",
"version": "16.1.8",
"version": "16.1.9",
"repository": {
"type": "git",
"url": "https://github.com/gabriel-gn/prisma-components.git"
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/sidebar/sidebar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</mat-drawer>

<mat-drawer-content class="ion-content-scroll-host drawer-content">
<div class="navbar">
<div class="navbar" [ngStyle]="{'z-index': zIndex}">
<div class="navbar-bg"></div>
<div class="navbar-content w-100 mb-3">
<svg (click)="drawer.toggle(); cdr.detectChanges()"
Expand Down
1 change: 1 addition & 0 deletions src/components/layout/sidebar/sidebar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class SidebarComponent implements OnInit {
@Input() showNextButton: boolean = false;
@Input() nextButtonAction: () => void;
@Input() sidebarEntries: SidebarItem[] = [];
@Input() zIndex: number;

private _label: Observable<string>;
@Input() set label(value: string | Observable<string>) {
Expand Down

1 comment on commit 5568405

@vercel
Copy link

@vercel vercel bot commented on 5568405 Oct 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.