Refactor templates and partials

This commit is contained in:
Alex Shpak
2018-11-25 13:30:25 +01:00
parent 461aafe995
commit 76c251066f
11 changed files with 57 additions and 33 deletions
+13 -3
View File
@@ -26,6 +26,10 @@
margin: 0 auto;
}
.hide {
display: none;
}
@mixin fixed {
position: fixed;
top: 0;
@@ -34,6 +38,12 @@
overflow-y: auto;
}
.hide {
display: none;
}
@mixin dark-links {
a {
color: $nav-link-color;
}
a.active {
color: $color-link;
}
}