Don't break subtitle partially

This commit is contained in:
Philipp Oppermann
2015-10-25 14:22:16 +01:00
parent f48ebb3961
commit a2cebb7fcb
2 changed files with 4 additions and 3 deletions

View File

@@ -9,11 +9,11 @@
<header class="masthead">
<h3 class="masthead-title">
<a href="{{ site.baseurl }}/" title="Home">{{ site.full_title }}</a>
<small>{{ site.tagline }}</small>
<span class="navigation">
{% for page in site.navigation_pages %}
<small><a href="{{ page[1] }}">{{ page[0] }}</a></small>
{% endfor %}</span>
<small>{{ site.tagline | replace:' ','&nbsp;' }}</small>
</h3>
</header>

View File

@@ -25,10 +25,11 @@
}
}
.masthead-title small {
margin-left: 1rem;
.masthead-title a:first-child {
padding-right: 0.5rem;
}
.navigation {
float: right;
}