From 1ae98c39421bc09bd2590d8e1cce21eb431c19ca Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 10 Jan 2023 22:51:11 +0100 Subject: [PATCH] removed dark: from css and fixed wrong classes --- src/components/truth-table.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/truth-table.tsx b/src/components/truth-table.tsx index ba49f01..c942731 100644 --- a/src/components/truth-table.tsx +++ b/src/components/truth-table.tsx @@ -26,7 +26,7 @@ const TruthTable: Component = ( { (exp) => (

{ exp }

@@ -37,11 +37,11 @@ const TruthTable: Component = ( { (row) => - + { (value) => + ${ value ? "bg-green-700" : "bg-red-700" }` }>

{ value ? "T" : "F" }

}