Add webkit no scrollbars to navs

This commit is contained in:
Ryan Watters
2017-03-02 18:34:26 -06:00
parent 395b208678
commit 33ed1b4cd1
3 changed files with 9 additions and 2 deletions
+4
View File
@@ -45,3 +45,7 @@ p {
margin-bottom: 1.5em;
line-height: $base-line-height-content;
}
::-webkit-scrollbar {
display:none;
}
@@ -17,6 +17,9 @@
display: flex;
flex-direction: column;
align-items: center;
&::-webkit-scrollbar {
display:none;
}
&.navigation-open {
transition: transform .3s ease-in-out;
transform: translateX(0px);
+2 -2
View File
File diff suppressed because one or more lines are too long