From 7180fc91fcd3305c5cffbbbbd1ab471ed8387574 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Fri, 14 Feb 2020 16:15:22 +0100 Subject: [PATCH] fixed linking issue with my other websites --- web/dart/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/dart/main.dart b/web/dart/main.dart index a547f55..db6bd35 100644 --- a/web/dart/main.dart +++ b/web/dart/main.dart @@ -57,7 +57,7 @@ bool setTheme(bool dark) { void themeSwitch(bool isDark) { querySelector('.fas').className = 'fas fa-' + (isDark ? 'sun' : 'moon'); querySelector('#theme').attributes['href'] = - '/css/' + (isDark ? 'dark' : 'light') + '.css'; + 'https://langue.phundrak.com/css/' + (isDark ? 'dark' : 'light') + '.css'; } void themeSwitchMouse(MouseEvent event) {