Fix css variables

This commit is contained in:
Ole Eskild Steensen 2022-10-13 14:05:27 +02:00
parent ad7872d19f
commit 0758fb9f3d
3 changed files with 4 additions and 3 deletions

View File

@ -32,8 +32,9 @@
return x;
});
const title = "{{page.fileSlug}}" || "Home"
const currentNode = {
title: "{{page.fileSlug}}",
title,
id: 0,
url: "{{page.url}}"
};

View File

@ -1,4 +1,4 @@
<div x-init="isDesktop = window.innerWidth>=1100; rerenderGraph()"
<div x-init="isDesktop = window.innerWidth>=1100;"
x-on:resize.window="isDesktop = (window.innerWidth>=1100) ? true : false;"
x-data="sidebarData">

View File

@ -4,7 +4,7 @@
***/
body{
:root{
--background-primary: rgb(32, 31, 31);
--background-secondary: rgb(57, 56, 56);
--text-normal: #dcddde;