Create skeleton layout for desktop docs nav
This includes switching to a 2-column layout (1 for nav and 1 for content) and moving footer links to docs component so floats can be cleared properly.
This commit is contained in:
@@ -72,6 +72,26 @@ li.nav-item {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.doc-nav-desktop {
|
||||
width: 25%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.doc-content {
|
||||
width: 75%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
@media (max-width: 992px){
|
||||
.doc-nav-desktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.doc-content {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#restAPI .api-category {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user