fix(aio): group topbar items into a single sidenav node when narrow screen (#17001)

The `TopBarNarrow` now only shows a single top level container, "About Angular",
and the original `TopBar` items will be children of this container.

The `TopBarNarrow` styling is changed to match the rest of the `SideNav`.
This commit is contained in:
Pete Bacon Darwin
2017-05-26 00:44:27 +01:00
committed by Chuck Jazdzewski
parent b37a0484d4
commit 2538094e13
3 changed files with 17 additions and 22 deletions

View File

@ -20,20 +20,21 @@
"TopBarNarrow": [
{
"url": "features",
"title": "Features"
},
{
"url": "resources",
"title": "Resources"
},
{
"url": "events",
"title": "Events"
},
{
"url": "docs",
"title": "Docs:"
"title": "About Angular",
"children": [
{
"url": "features",
"title": "Features"
},
{
"url": "resources",
"title": "Resources"
},
{
"url": "events",
"title": "Events"
}
]
}
],