aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-30 14:54:22 +0200
committerlonkaars <l.leblansch@gmail.com>2021-03-30 14:54:22 +0200
commitf75e45311ff48d14aa28ae6899a13b26b751c005 (patch)
tree503923c32d552a814c89b50958bbf4ea65f8c52b /components
parent8798e98cf0ebc3653366566ad6d114a021f5a757 (diff)
pinned posts on homepage working
Diffstat (limited to 'components')
-rw-r--r--components/navbar.tsx4
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>
}