summaryrefslogtreecommitdiffstats
path: root/ui/src/components/navbar.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-20 12:42:52 -0700
committerDessalines <tyhou13@gmx.com>2019-04-20 12:42:52 -0700
commitddabc4286118419280520c430adaf6d7f49ff9ca (patch)
tree2bd867453066655d68c10f24cbefba5282e7885c /ui/src/components/navbar.tsx
parentbe08352cfdef1d1e9a3f2de8fa28aad8767aeeec (diff)
Adding support for an /all route
- Fixes #85
Diffstat (limited to 'ui/src/components/navbar.tsx')
-rw-r--r--ui/src/components/navbar.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/navbar.tsx b/ui/src/components/navbar.tsx
index fed49e6f..5fc6ed7e 100644
--- a/ui/src/components/navbar.tsx
+++ b/ui/src/components/navbar.tsx
@@ -71,7 +71,7 @@ export class Navbar extends Component<any, NavbarState> {
{
<li className="nav-item">
<Link class="nav-link" to="/inbox">🖂
- {this.state.unreadCount> 0 && <span class="badge badge-light">{this.state.unreadCount}</span>}
+ {this.state.unreadCount> 0 && <span class="ml-1 badge badge-light">{this.state.unreadCount}</span>}
</Link>
</li>
}