From 372a7544c0eceb934cce8a4f7dab97b4881b4331 Mon Sep 17 00:00:00 2001 From: Dinesh Salunke Date: Fri, 3 Nov 2023 18:27:51 +0530 Subject: [PATCH] refactor: update the themes --- assets/css/theme.css | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/assets/css/theme.css b/assets/css/theme.css index 0b9651e..a608af2 100644 --- a/assets/css/theme.css +++ b/assets/css/theme.css @@ -685,6 +685,10 @@ video { margin-top: 0.75rem; } +.mt-16 { + margin-top: 4rem; +} + .block { display: block; } @@ -834,6 +838,10 @@ video { gap: 2rem; } +.gap-1 { + gap: 0.25rem; +} + .truncate { overflow: hidden; text-overflow: ellipsis; @@ -946,6 +954,11 @@ video { line-height: 1.25rem; } +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} + .font-bold { font-weight: 700; } @@ -954,6 +967,32 @@ video { font-weight: 500; } +.font-semibold { + font-weight: 600; +} + +.leading-none { + line-height: 1; +} + +.text-red-400 { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +.text-red-700 { + --tw-text-opacity: 1; + color: rgb(185 28 28 / var(--tw-text-opacity)); +} + +.text-red-700\/50 { + color: rgb(185 28 28 / 0.5); +} + +.line-through { + text-decoration-line: line-through; +} + .shadow { --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);