From e5421f7c53288710c8d3de0413cc33f820b4b07d Mon Sep 17 00:00:00 2001 From: javad <81633150+javadSharifi@users.noreply.github.com> Date: Wed, 1 May 2024 23:51:24 -0700 Subject: [PATCH] fix code cheatsheet.ts Not having a semi-colon at the end of the lines flwo-root grid inline-grid which caused problems in the output --- cheatsheet.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cheatsheet.ts b/cheatsheet.ts index 382f419..a04ab17 100644 --- a/cheatsheet.ts +++ b/cheatsheet.ts @@ -400,15 +400,15 @@ const CheatSheet = [ ], [ "flow-root", - "display: flow-root" + "display: flow-root;" ], [ "grid", - "display: grid" + "display: grid;" ], [ "inline-grid", - "display: inline-grid" + "display: inline-grid;" ], [ "contents",