Remove extra scroll bar in toc

This commit is contained in:
Ryan Watters
2017-03-14 12:00:09 -05:00
parent b0c3f566ef
commit 1b6431e146
3 changed files with 10 additions and 11 deletions
@@ -22,14 +22,14 @@ website.
The top level of a source directory will typically have the following elements:
```bash
▸ archetypes/
▸ content/
▸ data/
▸ i18n/
▸ layouts/
▸ static/
▸ themes/
config.toml
.
├── archetypes
├── config.toml
├── content
├── data
├── layouts
├── static
└── themes
```
You can learn more about each component of a newly scaffolded site in its respective documentation:
@@ -41,7 +41,6 @@ aside#toc {
position: relative;
min-height: calc(100vh - #{$site-header-height} - #{$site-footer-height-l-plus});
max-height: calc(100vh - #{$site-header-height});
overflow-y: scroll;
}
box-shadow: none;
top: $site-header-height;
@@ -65,7 +64,7 @@ nav#TableOfContents {
position: relative;
// margin-bottom: 20px;
height: auto;
overflow-y: scroll;
// overflow-y: scroll;
li code {
font-family: $base-font-family;
}
+1 -1
View File
File diff suppressed because one or more lines are too long