Minor style tweaks

This commit is contained in:
2018-08-31 13:58:26 +02:00
parent 9ffcde3348
commit 73e8a81f3c
2 changed files with 4 additions and 4 deletions

View File

@@ -72,7 +72,7 @@ html(lang="en")
| {% endif %}
| {% endwith %}
nav.navbar.navbar-expand-md.fixed-top
nav.navbar.navbar-expand-md.fixed-top.bg-white
a.navbar-brand(
href="{{ url_for('main.homepage') }}",
title="Blender Cloud")

View File

@@ -28,12 +28,12 @@ li
| {% endblock navigation_sections %}
| {% block navigation_user %}
li.nav-item-sign-in
li.pt-1.pr-1
| {% if current_user.is_anonymous %}
a.navbar-item(href="{{ url_for('users.login', next='/') }}")
a.btn.btn-outline-success(href="{{ url_for('users.login', next='/') }}")
| Log in and Explore
| {% else %}
a.navbar-item(href="{{ url_for('main.homepage') }}")
a.btn.btn-outline-success(href="{{ url_for('main.homepage') }}")
| Explore
| {% endif %}
| {% endblock navigation_user %}