From 3ba2d1a9d2669003c0897e15d7d35ab4fb8796ea Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 21 Feb 2020 21:48:30 +0100 Subject: [PATCH] append bootstrap as first child so it does not overrule js css --- src/app/tabs/theme-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tabs/theme-module.js b/src/app/tabs/theme-module.js index 40d931e639..d110a8bbe6 100644 --- a/src/app/tabs/theme-module.js +++ b/src/app/tabs/theme-module.js @@ -64,7 +64,7 @@ export class ThemeModule extends Plugin { theme.addEventListener('load', () => { if (callback) callback() }) - document.head.appendChild(theme) + document.head.insertBefore(theme, document.head.firstChild) } }