Skip to content

Commit

Permalink
Merge pull request barryclark#6 from pmarsceill/paths-problems
Browse files Browse the repository at this point in the history
Fix moar paths
  • Loading branch information
pmarsceill authored Oct 23, 2018
2 parents 1b71504 + b38f986 commit aa9e2ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<div class="page-wrap">
<div class="side-bar">
<a href="{{ site.baseurl }}/" class="site-title fs-6 text-grey-dk-300 lh-tight">{{ site.title }}</a>
<a href="{{ site.baseurl }}" class="site-title fs-6 text-grey-dk-300 lh-tight">{{ site.title }}</a>
<span class="fs-3"><button class="js-main-nav-trigger navigation-list-toggle btn btn-outline" type="button" data-text-toggle="Hide">Menu</button></span>
<div class="navigation main-nav js-main-nav">
{% include nav.html %}
Expand Down Expand Up @@ -38,7 +38,7 @@
{% if page.parent != nil and page.parent != page.title %}
<nav class="breadcrumb-nav">
<ol class="breadcrumb-nav-list">
<li class="breadcrumb-nav-list-item"><a href="{{ site.url | absolute_url }}/{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><a href="{{ site.url }}{{ site.baseurl }}{{ page.parent | slugify }}">{{ page.parent }}</a></li>
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
</ol>
</nav>
Expand Down
2 changes: 2 additions & 0 deletions _sass/support/mixins/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

@mixin btn-color($fg, $bg) {
color: $fg;
background-color: darken($bg, 2%);
background-image: linear-gradient(lighten($bg, 5%), darken($bg, 2%));
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12);

&:hover,
&.zeroclipboard-is-hover {
color: $fg;
background-color: darken($bg, 4%);
background-image: linear-gradient((lighten($bg, 2%), darken($bg, 4%)));
}

Expand Down
2 changes: 1 addition & 1 deletion docs/ui-components/typography.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ Text can be **bold**, _italic_, or ~~strikethrough~~.

There are a number of specific typographic CSS classes that allow you to do override default styling for font size, font-weight, line height, and capitalization.

[View typography utilities]({{ site.base_url }}{% link docs/utilities/utilities.md %}#typography){: .btn .btn-outline }
[View typography utilities]({{ site.baseurl }}{% link docs/utilities/utilities.md %}#typography){: .btn .btn-outline }

0 comments on commit aa9e2ab

Please sign in to comment.