Finally force the menu to be a first-child of app-navigation

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-09-10 16:21:49 +02:00
parent 4a3efdc6df
commit b0f7ad1508
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
1 changed files with 67 additions and 69 deletions

View File

@ -103,6 +103,9 @@ kbd {
> li {
display: inline-flex;
flex-wrap: wrap;
position: relative;
width: 100%;
box-sizing: border-box;
&:focus,
&:hover,
&.active,
@ -135,21 +138,6 @@ kbd {
}
}
}
}
.collapsible.open {
&:hover,
&:focus {
//box-shadow: inset 0 0 3px $color-box-shadow;
}
ul {
display: block;
}
}
}
li {
position: relative;
width: 100%;
box-sizing: border-box;
> a {
background-size: 16px 16px;
background-position: 14px center;
@ -215,6 +203,16 @@ kbd {
}
}
}
.collapsible.open {
&:hover,
&:focus {
//box-shadow: inset 0 0 3px $color-box-shadow;
}
ul {
display: block;
}
}
}
&.hidden {
display: none;
}