0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 10:52:42 +00:00

Split pane scrolling is FINALLY working

This commit is contained in:
Scott Tolksdorf
2016-05-04 02:13:11 -04:00
parent 75fb606097
commit 1ce0f00b62
8 changed files with 65 additions and 86 deletions

View File

@@ -9,11 +9,9 @@
}
nav{
background-color : #333;
.navContent{
display : flex;
justify-content : space-between;
display : flex;
justify-content : space-between;
}
.navSection{
display : flex;
@@ -26,13 +24,10 @@ nav{
margin-left : 8px;
color : white;
text-decoration : none;
&:hover{
.name{ color : @orange; }
svg{ fill : @orange }
}
svg{
height : 13px;
margin-right : 0.2em;
@@ -58,11 +53,14 @@ nav{
padding : 8px 12px;
cursor : pointer;
background-color : #333;
font-size : 12px;
font-size : 10px;
font-weight : 800;
color : white;
text-decoration: none;
text-decoration : none;
text-transform : uppercase;
i{
margin-left : 5px;
font-size : 13px;
}
&.tealLight:hover{ background-color : @tealLight };
&.teal:hover{ background-color : @teal };
@@ -85,7 +83,6 @@ nav{
&.greyLight:hover{ background-color : @greyLight };
&.grey:hover{ background-color : @grey };
}
.navSection + .navSection .navItem{
border-left : 1px solid #666;
}