Skip to content

Commit

Permalink
fix(navbar): isFixed theme was missing fixed class
Browse files Browse the repository at this point in the history
  • Loading branch information
MGREMY committed Dec 11, 2024
1 parent 5714619 commit 2408269
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/docs/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[footerContent]="footerContent">
<flowbite-navbar
ngDocCustomNavbar
[isFixed]="true">
class="border-b">
<div class="flex flex-row flex-1 items-center gap-2">
@if (!isLandingPage) {
<flowbite-navbar-icon-button
Expand Down
2 changes: 1 addition & 1 deletion libs/flowbite-angular/navbar/navbar.theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const navbarTheme: NavbarTheme = createTheme({
disabled: '',
},
isFixed: {
enabled: 'border-b',
enabled: 'fixed w-full border-b',
disabled: '',
},
},
Expand Down

0 comments on commit 2408269

Please sign in to comment.