From b6aa9b1b43be0ad772b759110b824ce3b2bdb6af Mon Sep 17 00:00:00 2001 From: Big O Date: Sun, 25 Aug 2024 20:07:33 +0300 Subject: [PATCH] Update cheatsheet.json Fixed a typo with the inset-80, 20 units. The 'rem' was missing. --- src/modules/cheatsheet.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/modules/cheatsheet.json b/src/modules/cheatsheet.json index 69a4ea8..d0690f6 100644 --- a/src/modules/cheatsheet.json +++ b/src/modules/cheatsheet.json @@ -2451,55 +2451,55 @@ ], [ "inset-80", - "top: 20;\nright: 20;\nbottom: 20;\nleft: 20;" + "top: 20rem;\nright: 20rem;\nbottom: 20rem;\nleft: 20rem;" ], [ "-inset-80", - "top: -20;\nright: -20;\nbottom: -20;\nleft: -20;" + "top: -20rem;\nright: -20rem;\nbottom: -20rem;\nleft: -20rem;" ], [ "inset-y-80", - "top: 20;\nbottom: 20;" + "top: 20rem;\nbottom: 20rem;" ], [ "-inset-y-80", - "top: -20;\nbottom: -20;" + "top: -20rem;\nbottom: -20rem;" ], [ "inset-x-80", - "right: 20;\nleft: 20;" + "right: 20rem;\nleft: 20rem;" ], [ "-inset-x-80", - "right: -20;\nleft: -20;" + "right: -20rem;\nleft: -20rem;" ], [ "top-80", - "top: 20;" + "top: 20rem;" ], [ "right-80", - "right: 20;" + "right: 20rem;" ], [ "bottom-80", - "bottom: 20;" + "bottom: 20rem;" ], [ "left-80", - "left: 20;" + "left: 20rem;" ], [ "-top-80", - "top: -20;" + "top: -20rem;" ], [ "-right-80", - "right: -20;" + "right: -20rem;" ], [ "-bottom-80", - "bottom: -20;" + "bottom: -20rem;" ], [ "-left-80",