Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Fix go to settings link
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsoft committed Nov 24, 2024
1 parent 31d0887 commit f5ec967
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions components/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ const navMenuPopover = Popover(
),
perm.length
? Grid(
Label("Go to Settings"),
MaterialIcon("arrow_forward_ios"),
Label("Go to Settings")
.setTextSize("sm"),
MaterialIcon("arrow_forward_ios")
.setCssStyle("scale", ".7"),
)
.setTemplateColumns("auto max-content")
.setMargin("5px 0 0")
.addClass("small-entry", "settings")
.onClick(() => location.href = "/settings")
: Empty(),
Expand Down

0 comments on commit f5ec967

Please sign in to comment.