Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uicardiodev/hugo-sodium-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scss/mixins/_nav-divider.scss')
-rwxr-xr-xscss/mixins/_nav-divider.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/scss/mixins/_nav-divider.scss b/scss/mixins/_nav-divider.scss
new file mode 100755
index 0000000..493de03
--- /dev/null
+++ b/scss/mixins/_nav-divider.scss
@@ -0,0 +1,10 @@
+// Horizontal dividers
+//
+// Dividers (basically an hr) within dropdowns and nav lists
+
+@mixin nav-divider($color: #e5e5e5) {
+ height: 0;
+ margin: ($spacer / 2) 0;
+ overflow: hidden;
+ border-top: 1px solid $color;
+}