UI improvements and initial loading screen color

This commit is contained in:
2026-02-02 12:08:30 -06:00
parent b2c197454d
commit 3212402788
7 changed files with 338 additions and 238 deletions
+7
View File
@@ -34,6 +34,13 @@ const App: Component = () => {
import('./views/PriorityView');
import('./views/MatrixView');
import('./views/SettingsView');
// Remove splash screen after high priority work is done
const splash = document.getElementById('splash');
if (splash) {
splash.style.opacity = '0';
setTimeout(() => splash.remove(), 500);
}
});
});