Compare commits

..

No commits in common. "af50ba58b9388a64e02f341392722a8e61ba2221" and "63ef4371cf14dacf4716ae97d971e4baf9f6aede" have entirely different histories.

3 changed files with 5 additions and 13 deletions

View file

@ -5315,10 +5315,6 @@ label.panel-block {
#navbar-menu { #navbar-menu {
width: 100%; width: 100%;
justify-content: space-around; } } justify-content: space-around; } }
@media screen and (min-width: 1024px) {
#navbar-menu {
flex-wrap: nowrap;
margin-right: -1rem; } }
/* Featured images on article pages */ /* Featured images on article pages */
.featured-image figure.image { .featured-image figure.image {
width: 100vw; width: 100vw;

View file

@ -56,10 +56,6 @@
width: 100%; width: 100%;
justify-content: space-around; justify-content: space-around;
} }
@include from($desktop) {
flex-wrap: nowrap;
margin-right: -1rem;
}
} }

View file

@ -25,6 +25,11 @@
{% endblock navbar_branding %} {% endblock navbar_branding %}
<nav class="navigation column"> <nav class="navigation column">
<div class="columns"> <div class="columns">
{% if page.header_search %}
<div class="search-bar column has-text-right">
{{ page.header_search }}
</div>
{% endif %}
{% block navbar_social %} {% block navbar_social %}
{% if page.navbar_social %} {% if page.navbar_social %}
<div class="column is-narrow"> <div class="column is-narrow">
@ -39,11 +44,6 @@
</div> </div>
{% endif %} {% endif %}
{% endblock primary_menu %} {% endblock primary_menu %}
{% if page.header_search %}
<div class="search-bar column is-narrow">
{{ page.header_search }}
</div>
{% endif %}
</div> </div>
</nav> </nav>
</div> </div>