Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+// Horizontal dividers
2
+//
3
+// Dividers (basically an hr) within dropdowns and nav lists
4
+
5
+.nav-divider(@color: #e5e5e5) {
6
+  height: 1px;
7
+  margin: ((@line-height-computed / 2) - 1) 0;
8
+  overflow: hidden;
9
+  background-color: @color;
10
+}