From 73e8a81f3c483039c4edb7cb23d7867564d79820 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Fri, 31 Aug 2018 13:58:26 +0200 Subject: [PATCH] Minor style tweaks --- src/templates/layout.pug | 2 +- src/templates/welcome.pug | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/templates/layout.pug b/src/templates/layout.pug index 7986da4..2a70c07 100644 --- a/src/templates/layout.pug +++ b/src/templates/layout.pug @@ -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") diff --git a/src/templates/welcome.pug b/src/templates/welcome.pug index 17a9a82..b4a0def 100644 --- a/src/templates/welcome.pug +++ b/src/templates/welcome.pug @@ -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 %}