From c140c1d3e12b87cad91b17ed9db8b7dac2a1d68b Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Sat, 16 Dec 2023 13:11:31 +0100 Subject: [PATCH] cosmetic fixes --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index b6268d2..8d11967 100644 --- a/src/main.ts +++ b/src/main.ts @@ -272,7 +272,7 @@ export class Editor { let list = document.createElement("ul"); list.className = - "lg:h-80 lg:text-normal text-sm h-auto lg:w-80 w-auto lg:pb-2 lg:pt-2 overflow-y-scroll text-selection_background bg-background lg:mb-4 border rounded-lg"; + "lg:h-80 lg:text-normal text-normal h-auto lg:w-80 w-auto lg:pb-2 lg:pt-2 overflow-y-scroll text-brightwhite bg-background lg:mb-4 border rounded-lg"; list.append( ...Object.keys(this.universes).map((it) => { let item = itemTemplate.content.cloneNode(true) as DocumentFragment;