diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-30 14:54:22 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-30 14:54:22 +0200 |
commit | f75e45311ff48d14aa28ae6899a13b26b751c005 (patch) | |
tree | 503923c32d552a814c89b50958bbf4ea65f8c52b /components | |
parent | 8798e98cf0ebc3653366566ad6d114a021f5a757 (diff) |
pinned posts on homepage working
Diffstat (limited to 'components')
-rw-r--r-- | components/navbar.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/navbar.tsx b/components/navbar.tsx index 9183b3b..9a78eec 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -36,12 +36,12 @@ export default function Navbar(props: { icon={<HomeRoundedIcon/>} title="Home" href="/" - classList={["indentLevel0"]}/> + classList={["indentLevel0", "link"]}/> <NavbarItem active={props.page == "search"} icon={<SearchRoundedIcon/>} title="Search for posts" href="/search" - classList={["indentLevel0"]}/> + classList={["indentLevel0", "link"]}/> </div> } |