From 8b9bd80d2083935fa9184308b964dd8afca3077f Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 7 Feb 2025 15:24:45 +0100 Subject: [PATCH] Added potential fix for mastodon styling bug --- roles/nginx-global-css/templates/global.css.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/nginx-global-css/templates/global.css.j2 b/roles/nginx-global-css/templates/global.css.j2 index b27df767..f61280b9 100644 --- a/roles/nginx-global-css/templates/global.css.j2 +++ b/roles/nginx-global-css/templates/global.css.j2 @@ -158,3 +158,9 @@ h1, h2 { #dynamicModalContent { color: var(--button-text-color) !important; } + +/* Fix for mastodon svgs */ +button svg { + fill: var(--button-text-color) !important; + color: var(--button-text-color) !important; +}