From 6ef924d53193036de6397f264a00fd1b324b5bdc Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Tue, 1 Feb 2022 19:31:01 +0100 Subject: [PATCH] Overwrite wrong bulma settings --- theme/funkwhale/static/css/style.css | 5 +++++ theme/funkwhale/templates/base.html | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/theme/funkwhale/static/css/style.css b/theme/funkwhale/static/css/style.css index 1a452b4..504f0f2 100644 --- a/theme/funkwhale/static/css/style.css +++ b/theme/funkwhale/static/css/style.css @@ -126,6 +126,7 @@ aside { text-align: center; padding-top: 8%; background-size: cover; + box-sizing: content-box; } aside a { color:var(--color-background-main); text-decoration:none; } aside a:visited { color:var(--color-background-main); text-decoration:none; } @@ -208,6 +209,10 @@ aside > h2 { margin: auto; } +.logo-container h1 { + font-size: 21px; +} + /*--------Responsive------------*/ @media (max-width: 800px) { diff --git a/theme/funkwhale/templates/base.html b/theme/funkwhale/templates/base.html index 5b429c4..b5c0123 100644 --- a/theme/funkwhale/templates/base.html +++ b/theme/funkwhale/templates/base.html @@ -75,7 +75,7 @@ {% if LINKS %} <h2 class="blog_roll_link">LINKS</h2> - <ul class="navbar"> + <ul> {% for name, link in LINKS %} <li><a href="{{ link }}">{{ name }}</a></li> {% endfor %} @@ -84,7 +84,7 @@ {% if DISPLAY_CATEGORIES_ON_MENU and categories %} <h2 class="blog_roll_link">Categories</h2> - <ul class="navbar"> + <ul> {% for cat, null in categories %} <li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li> -- GitLab