From 6d799ebd794688397e900830c3bfadae7821ac0b Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Sun, 15 Sep 2024 00:57:17 +0500 Subject: [PATCH] feat: add button to header --- index.html | 8 ++++++-- static/tailwind.css | 9 +++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1c651e6..9a8692a 100644 --- a/index.html +++ b/index.html @@ -8,13 +8,17 @@
@@ -46,7 +50,7 @@
- READ MORE + ABOUT ME LINKS
diff --git a/static/tailwind.css b/static/tailwind.css index 6aaa3d2..46a53e8 100644 --- a/static/tailwind.css +++ b/static/tailwind.css @@ -766,6 +766,10 @@ video { gap: 2rem; } +.gap-1 { + gap: 0.25rem; +} + .overflow-x-hidden { overflow-x: hidden; } @@ -844,6 +848,11 @@ video { padding-bottom: 2rem; } +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + .pb-2 { padding-bottom: 0.5rem; }