From eeedf1cde5abe67919149ee68df28d1dd46c2139 Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Thu, 12 Oct 2017 11:29:28 -0700 Subject: [PATCH] fix(algolia): make logo show up on FF Background images in svg need to have the # encoded to show up if the image type is svg+xml;utf8 fixes #130 --- src/css/algolia.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/algolia.css b/src/css/algolia.css index 48cf1b43..60abf611 100644 --- a/src/css/algolia.css +++ b/src/css/algolia.css @@ -441,7 +441,7 @@ } .algolia-autocomplete .algolia-docsearch-footer--logo { - background-image: url('data:image/svg+xml;utf8,'); + background-image: url('data:image/svg+xml;utf8,'); background-repeat: no-repeat; background-position: center; background-size: 100%;