File tree 3 files changed +22
-1
lines changed
3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,13 @@ html.is-clipped--nav {
62
62
overflow-y : hidden;
63
63
}
64
64
65
+ @media screen and (max-width : 1023px ) {
66
+ html .is-clipped--nav .toolbar {
67
+ position : fixed;
68
+ width : 100% ;
69
+ }
70
+ }
71
+
65
72
.nav-panel-menu {
66
73
overflow-y : scroll;
67
74
display : flex;
Original file line number Diff line number Diff line change 148
148
if ( ! el ) return
149
149
return selector ? el [ el . matches ? 'matches' : 'msMatchesSelector' ] ( selector ) && el : el
150
150
}
151
+
152
+ // Remove clipped nav
153
+ function removeClippedNav ( ) {
154
+ var html = document . querySelector ( 'html' )
155
+ if ( window . innerWidth >= 1024 && html . classList . has ( 'is-clipped--nav' ) ) {
156
+ html . classList . remove ( 'is-clipped--nav' )
157
+ }
158
+ }
159
+
160
+ window . addEventListener ( 'resize' , removeClippedNav )
151
161
} ) ( )
Original file line number Diff line number Diff line change 131
131
</ul >
132
132
</div >
133
133
<div class =" navbar-item project" >
134
- <a class =" project-name" href =" /developer/graphacademy/" >GraphAcademy</a >
134
+ <a class =" project-name" href =" https://graphacademy.neo4j.com/?ref=docs" target =" _blank" >GraphAcademy</a >
135
+ <ul class =" project-links" >
136
+ <li ><a class =" project-link" href =" https://graphacademy.neo4j.com/?ref=docs" >Self Paced Training</a ></li >
137
+ <li ><a class =" project-link" href =" https://graphacademy.neo4j.com/categories/certification/" target =" _blank" >Certification</a ></li >
138
+ </ul >
135
139
</div >
136
140
<div class =" navbar-item project" >
137
141
<a class =" project-name" href =" /graphgists/" >GraphGists</a >
You can’t perform that action at this time.
0 commit comments