Skip to content

Commit

Permalink
Design: about page link
Browse files Browse the repository at this point in the history
  • Loading branch information
gumgood committed Sep 17, 2023
1 parent 4b17531 commit ea9e808
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
8 changes: 4 additions & 4 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
</a>
</div>
<div class="site-title">
<a href="/" class="site-title">{{ site.title }}</a>
<a href="/about" class="site-title">
<span>{{ site.title }}</span>
{% include octicons/chevron-right.html %}
</a>
</div>
<div class=" site-subtitle">
{{ site.description }}
Expand Down Expand Up @@ -80,9 +83,6 @@
<a href="mailto:{{ site.author.email }}" aria-label="email">
{% include octicons/mail.html %}
</a>
<a href="/about" aria-label="about">
{% include octicons/info.html %}
</a>
<a href="{{ 'feed.xml' | absolute_url }}" aria-label="rss" target="_blank" rel="noopener noreferrer">
{% include octicons/rss.html %}
</a>
Expand Down
15 changes: 11 additions & 4 deletions _sass/include/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ nav {

#profile-wrapper {
margin: 0 1rem;
padding: 0.75rem;
padding: 1rem 0.75rem;

border: 1px solid rgb(208, 215, 222);
border-radius: 0.75rem;
Expand Down Expand Up @@ -72,9 +72,16 @@ nav {

a {
color: rgba(117, 117, 117, .9);
fill: rgba(117, 117, 117, .9);

&:hover {
color: var(--sidebar-active-color);
fill: var(--sidebar-active-color);
}

svg {
margin-left: -0.25rem;
vertical-align: bottom;
}
}
}
Expand All @@ -87,7 +94,7 @@ nav {


ul#profile-detail {
margin: 1rem 0 0.25rem;
margin: 1rem 0 0;
padding: 0;

list-style-type: none;
Expand All @@ -113,7 +120,7 @@ nav {
list-style-type: none;

width: 100%;
margin: 1.5rem 0 0.5rem;
margin: 1.5rem 0 5rem;
padding: 0;

li.nav-item {
Expand Down Expand Up @@ -194,7 +201,7 @@ nav {
flex-wrap: wrap;

width: auto;
margin: 1.5rem 1.75rem;
margin: auto 1.75rem 1.5rem;
padding-top: 1.5rem;

border-top: 1px solid rgba(187,187,187,0.9);
Expand Down

0 comments on commit ea9e808

Please sign in to comment.