From 80ce694b2499f45142b9746aa862cf288ce38e5e Mon Sep 17 00:00:00 2001
From: avindra <aavindraa@gmail.com>
Date: Sun, 2 Mar 2014 16:19:44 -0500
Subject: [PATCH] Fix for stray 1px line under top navigation

If you add an "active" class to one of the <li> elements in the top navigation, and style it so that active tabs have a different color, it becomes clear that there is a 1 pixel stray line under the navigation. This style fixes that.
---
 docs/examples/dashboard/dashboard.css | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/docs/examples/dashboard/dashboard.css b/docs/examples/dashboard/dashboard.css
index ef6c0cfdb3..22e3fdef60 100644
--- a/docs/examples/dashboard/dashboard.css
+++ b/docs/examples/dashboard/dashboard.css
@@ -17,6 +17,13 @@ body {
   border-bottom: 1px solid #eee;
 }
 
+/*
+ * Top navigation
+ * Hide default border to remove 1px line.
+ */
+.navbar-fixed-top {
+  border:0;
+}
 
 /*
  * Sidebar
-- 
GitLab