Implement scrolling to about section

This commit is contained in:
James 2018-01-14 14:19:52 +11:00
parent 64d55287d5
commit 4049df9d9f
3 changed files with 7 additions and 1 deletions

View file

@ -11,7 +11,7 @@ paginate = 10
name = "about"
weight = 1
identifier = "about"
url = "/"
url = "/#about-section"
[[menu.main]]
name = "wiki"

View file

@ -44,6 +44,7 @@
<section class="hero">
<div class="hero-body">
<div class="container">
<span id="about-section"></span>
<h1 class="title">About</h1>
<div class="content">
<p>

View file

@ -12,3 +12,8 @@ $switch-gray: #828282;
stroke: $color !important;
}
}
#about-section {
position: relative;
top: -100px;
}