From 103d5afc46260362a67c80e40cb326b3b2965f3b Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:09:29 -0400 Subject: [PATCH 01/34] Update style.css --- style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/style.css b/style.css index 79147e98..d909b603 100644 --- a/style.css +++ b/style.css @@ -93,3 +93,14 @@ a.card div.h-6.w-6 { .overview-page-wrapper p + p { margin-top: 1rem; } + +/* Nav tab font size */ +nav-tabs-item { + font-size: 1rem; + font-weight: 500; +} + +mobile-nav-tabs-item { + font-size: 1rem; + font-weight: 500; +} From e35a69ff5b6b143adedd11652075fff97e85cbea Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:17:22 -0400 Subject: [PATCH 02/34] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9b6dbac..daf7f0d5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This website is built using [Mintlify](https://mintlify.com/). ## Publishing Changes -Create a pull request to make document changes, and request a review from [@muhsinking](https://github.com/muhsinking). Changes will be deployed to production automatically after they are pushed to the `main` branch. +Create a pull request to make document changes, and request a review from [@lavanya-gunreddi](https://github.com/lavanya-gunreddi). Changes will be deployed to production automatically after they are pushed to the `main` branch. ## Running the docs locally From be662bcbbc3d890f0a33eda6fdc9e156bf72dcee Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:21:54 -0400 Subject: [PATCH 03/34] Update style.css --- style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index d909b603..959c7f7c 100644 --- a/style.css +++ b/style.css @@ -95,9 +95,9 @@ a.card div.h-6.w-6 { } /* Nav tab font size */ -nav-tabs-item { - font-size: 1rem; - font-weight: 500; +.nav-tabs-item { + font-size: 1.25rem !important; + font-weight: 600 !important; } mobile-nav-tabs-item { From 9e6bc69b49b649a6ece08e4d40b9e59aa8baa2a1 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:24:54 -0400 Subject: [PATCH 04/34] Update style.css --- style.css | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 959c7f7c..b99a9c34 100644 --- a/style.css +++ b/style.css @@ -94,13 +94,32 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tab font size */ +/* Nav tabs - fill full width equally */ +nav-tabs { + display: flex !important; + width: 100% !important; +} + +/* Each tab as a button */ .nav-tabs-item { + flex: 1 !important; + justify-content: center !important; font-size: 1.25rem !important; font-weight: 600 !important; + padding: 0.4rem 0.75rem !important; + border-radius: 8px !important; + border: 1.5px solid transparent !important; + transition: background 0.2s, border-color 0.2s !important; +} + +/* Hover state */ +.nav-tabs-item:hover { + background: rgba(95, 76, 254, 0.08) !important; + border-color: rgba(95, 76, 254, 0.3) !important; } -mobile-nav-tabs-item { - font-size: 1rem; - font-weight: 500; +/* Active tab */ +.nav-tabs-item[data-active="true"] { + background: rgba(95, 76, 254, 0.12) !important; + border-color: #5F4CFE !important; } From fa2cd29eece10de596dc976ffed416d47dba94db Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:28:20 -0400 Subject: [PATCH 05/34] Update style.css --- style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style.css b/style.css index b99a9c34..3529b66f 100644 --- a/style.css +++ b/style.css @@ -97,6 +97,7 @@ a.card div.h-6.w-6 { /* Nav tabs - fill full width equally */ nav-tabs { display: flex !important; + flex: 1 !important; width: 100% !important; } @@ -104,6 +105,7 @@ nav-tabs { .nav-tabs-item { flex: 1 !important; justify-content: center !important; + white-space: nowrap !important; font-size: 1.25rem !important; font-weight: 600 !important; padding: 0.4rem 0.75rem !important; From f86cef4f2cc07fce909a74a39aceb8de77f5b324 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:30:53 -0400 Subject: [PATCH 06/34] Update style.css --- style.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 3529b66f..df6645be 100644 --- a/style.css +++ b/style.css @@ -94,14 +94,13 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tabs - fill full width equally */ -nav-tabs { - display: flex !important; - flex: 1 !important; +/* Force nav-tabs to fill full navbar width */ +.nav-tabs { width: 100% !important; + gap: 0 !important; } -/* Each tab as a button */ +/* Each tab as a button, spread equally */ .nav-tabs-item { flex: 1 !important; justify-content: center !important; From ebc30b9dd6d3eadccd9c0f666ad68e3a48b9a979 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 15:34:14 -0400 Subject: [PATCH 07/34] Update style.css --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index df6645be..7407ee7d 100644 --- a/style.css +++ b/style.css @@ -94,9 +94,10 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Force nav-tabs to fill full navbar width */ +/* Nav tabs - fill available space inside navbar padding */ .nav-tabs { - width: 100% !important; + flex: 1 !important; + min-width: 0 !important; gap: 0 !important; } From 5cc4e7387142fb30b388d5d3631df5f651b5fde4 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:11:38 -0400 Subject: [PATCH 08/34] Update style.css --- style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 7407ee7d..c61ca4c1 100644 --- a/style.css +++ b/style.css @@ -94,16 +94,16 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tabs - fill available space inside navbar padding */ +/* Nav tabs - spread across full width */ .nav-tabs { flex: 1 !important; min-width: 0 !important; gap: 0 !important; + justify-content: space-between !important; } -/* Each tab as a button, spread equally */ +/* Each tab as a button */ .nav-tabs-item { - flex: 1 !important; justify-content: center !important; white-space: nowrap !important; font-size: 1.25rem !important; From 86a0553c041a25a903abb2e0934a7b3dd2259d4c Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:14:39 -0400 Subject: [PATCH 09/34] Update style.css --- style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index c61ca4c1..54d2524b 100644 --- a/style.css +++ b/style.css @@ -94,21 +94,27 @@ a.card div.h-6.w-6 { margin-top: 1rem; } +/* Prevent navbar from clipping tabs */ +#navbar-transition-maple { + overflow: visible !important; +} + /* Nav tabs - spread across full width */ .nav-tabs { flex: 1 !important; min-width: 0 !important; gap: 0 !important; justify-content: space-between !important; + overflow: visible !important; } /* Each tab as a button */ .nav-tabs-item { justify-content: center !important; white-space: nowrap !important; - font-size: 1.25rem !important; + font-size: 1.1rem !important; font-weight: 600 !important; - padding: 0.4rem 0.75rem !important; + padding: 0.4rem 0.5rem !important; border-radius: 8px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From ceb6be01a05e7b82ca4421f05db852ecef53bd1f Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:22:59 -0400 Subject: [PATCH 10/34] Update style.css --- style.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 54d2524b..71fe1e2d 100644 --- a/style.css +++ b/style.css @@ -94,8 +94,10 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Prevent navbar from clipping tabs */ +/* Reduce navbar padding to give tabs more room */ #navbar-transition-maple { + padding-left: 1rem !important; + padding-right: 1rem !important; overflow: visible !important; } @@ -105,7 +107,6 @@ a.card div.h-6.w-6 { min-width: 0 !important; gap: 0 !important; justify-content: space-between !important; - overflow: visible !important; } /* Each tab as a button */ @@ -114,7 +115,7 @@ a.card div.h-6.w-6 { white-space: nowrap !important; font-size: 1.1rem !important; font-weight: 600 !important; - padding: 0.4rem 0.5rem !important; + padding: 0.3rem 0.5rem !important; border-radius: 8px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From ddce4d9984a68ad762e3091e9e354d9797fabe2a Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:28:56 -0400 Subject: [PATCH 11/34] Update style.css --- style.css | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/style.css b/style.css index 71fe1e2d..3529b66f 100644 --- a/style.css +++ b/style.css @@ -94,28 +94,21 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Reduce navbar padding to give tabs more room */ -#navbar-transition-maple { - padding-left: 1rem !important; - padding-right: 1rem !important; - overflow: visible !important; -} - -/* Nav tabs - spread across full width */ -.nav-tabs { +/* Nav tabs - fill full width equally */ +nav-tabs { + display: flex !important; flex: 1 !important; - min-width: 0 !important; - gap: 0 !important; - justify-content: space-between !important; + width: 100% !important; } /* Each tab as a button */ .nav-tabs-item { + flex: 1 !important; justify-content: center !important; white-space: nowrap !important; - font-size: 1.1rem !important; + font-size: 1.25rem !important; font-weight: 600 !important; - padding: 0.3rem 0.5rem !important; + padding: 0.4rem 0.75rem !important; border-radius: 8px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From 64788218d50d6892662cd3d39151ce5ae488cbf1 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:35:46 -0400 Subject: [PATCH 12/34] Update style.css --- style.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/style.css b/style.css index 3529b66f..4ec0d68a 100644 --- a/style.css +++ b/style.css @@ -94,21 +94,21 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tabs - fill full width equally */ -nav-tabs { - display: flex !important; +/* Nav tabs - fill full available width */ +.nav-tabs { flex: 1 !important; - width: 100% !important; + gap: 0 !important; } -/* Each tab as a button */ +/* Each tab gets exactly 1/7 of the space */ .nav-tabs-item { - flex: 1 !important; + flex: 1 1 0 !important; + min-width: 0 !important; justify-content: center !important; white-space: nowrap !important; - font-size: 1.25rem !important; + font-size: clamp(0.85rem, 1.1vw, 1.1rem) !important; font-weight: 600 !important; - padding: 0.4rem 0.75rem !important; + padding: 0.3rem 0.25rem !important; border-radius: 8px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From e39e43e0a468aebac86db43a5311ab7ec16d8515 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:41:54 -0400 Subject: [PATCH 13/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 4ec0d68a..b0460a52 100644 --- a/style.css +++ b/style.css @@ -109,7 +109,7 @@ a.card div.h-6.w-6 { font-size: clamp(0.85rem, 1.1vw, 1.1rem) !important; font-weight: 600 !important; padding: 0.3rem 0.25rem !important; - border-radius: 8px !important; + border-radius: 7px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; } From eea6b041b1dfd1b16158820d393071175ead6ab0 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 18:44:28 -0400 Subject: [PATCH 14/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index b0460a52..628c1d63 100644 --- a/style.css +++ b/style.css @@ -109,7 +109,7 @@ a.card div.h-6.w-6 { font-size: clamp(0.85rem, 1.1vw, 1.1rem) !important; font-weight: 600 !important; padding: 0.3rem 0.25rem !important; - border-radius: 7px !important; + border-radius: 5px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; } From 5ff4b7f1654964329d19aa3d54fbc6e3b7e50818 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 19:37:11 -0400 Subject: [PATCH 15/34] Update style.css --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index 628c1d63..8dd3d699 100644 --- a/style.css +++ b/style.css @@ -94,10 +94,18 @@ a.card div.h-6.w-6 { margin-top: 1rem; } +/* Prevent navbar from clipping the last tab */ +#navbar-transition-maple { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + overflow: visible !important; +} + /* Nav tabs - fill full available width */ .nav-tabs { flex: 1 !important; gap: 0 !important; + overflow: visible !important; } /* Each tab gets exactly 1/7 of the space */ From 5509545d73572dba3fa4f3b73b6a9db2c7a8a52d Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 19:40:45 -0400 Subject: [PATCH 16/34] Update style.css --- style.css | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/style.css b/style.css index 8dd3d699..df6645be 100644 --- a/style.css +++ b/style.css @@ -94,30 +94,21 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Prevent navbar from clipping the last tab */ -#navbar-transition-maple { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; - overflow: visible !important; -} - -/* Nav tabs - fill full available width */ +/* Force nav-tabs to fill full navbar width */ .nav-tabs { - flex: 1 !important; + width: 100% !important; gap: 0 !important; - overflow: visible !important; } -/* Each tab gets exactly 1/7 of the space */ +/* Each tab as a button, spread equally */ .nav-tabs-item { - flex: 1 1 0 !important; - min-width: 0 !important; + flex: 1 !important; justify-content: center !important; white-space: nowrap !important; - font-size: clamp(0.85rem, 1.1vw, 1.1rem) !important; + font-size: 1.25rem !important; font-weight: 600 !important; - padding: 0.3rem 0.25rem !important; - border-radius: 5px !important; + padding: 0.4rem 0.75rem !important; + border-radius: 8px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; } From 6d9163654d28e60f07a72221e937ee7a47721583 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 19:42:08 -0400 Subject: [PATCH 17/34] Update style.css --- style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/style.css b/style.css index df6645be..0b4a70b6 100644 --- a/style.css +++ b/style.css @@ -104,7 +104,6 @@ a.card div.h-6.w-6 { .nav-tabs-item { flex: 1 !important; justify-content: center !important; - white-space: nowrap !important; font-size: 1.25rem !important; font-weight: 600 !important; padding: 0.4rem 0.75rem !important; From afb7bbb803e49480a91736172fd2a1a31ca0fb85 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 19:43:58 -0400 Subject: [PATCH 18/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 0b4a70b6..ce729238 100644 --- a/style.css +++ b/style.css @@ -102,7 +102,7 @@ a.card div.h-6.w-6 { /* Each tab as a button, spread equally */ .nav-tabs-item { - flex: 1 !important; + flex: 0.75 !important; justify-content: center !important; font-size: 1.25rem !important; font-weight: 600 !important; From 070135dfff4a818d670d5920fc5ded2836343bbe Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 19:49:23 -0400 Subject: [PATCH 19/34] Update style.css --- style.css | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/style.css b/style.css index ce729238..844348f3 100644 --- a/style.css +++ b/style.css @@ -94,20 +94,21 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Force nav-tabs to fill full navbar width */ +/* Nav tabs - fill full navbar width */ .nav-tabs { - width: 100% !important; + flex: 1 !important; gap: 0 !important; } -/* Each tab as a button, spread equally */ +/* Equal width tabs, text wraps if needed */ .nav-tabs-item { - flex: 0.75 !important; + flex: 1 1 0 !important; justify-content: center !important; - font-size: 1.25rem !important; + text-align: center !important; + font-size: 1.1rem !important; font-weight: 600 !important; - padding: 0.4rem 0.75rem !important; - border-radius: 8px !important; + padding: 0.3rem 0.5rem !important; + border-radius: 5px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; } From fdc409570e41cb4c2595a9117af11ea020e69fb5 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:34:38 -0400 Subject: [PATCH 20/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 844348f3..ec02ded2 100644 --- a/style.css +++ b/style.css @@ -96,7 +96,7 @@ a.card div.h-6.w-6 { /* Nav tabs - fill full navbar width */ .nav-tabs { - flex: 1 !important; + flex: 0 !important; gap: 0 !important; } From 6e7a47cfb3c3e6b07d8bbd66fd9c0a64e896b71e Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:36:46 -0400 Subject: [PATCH 21/34] Update style.css --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index ec02ded2..a4cdb743 100644 --- a/style.css +++ b/style.css @@ -96,13 +96,13 @@ a.card div.h-6.w-6 { /* Nav tabs - fill full navbar width */ .nav-tabs { - flex: 0 !important; + flex: 1 !important; gap: 0 !important; } /* Equal width tabs, text wraps if needed */ .nav-tabs-item { - flex: 1 1 0 !important; + flex: none !important; justify-content: center !important; text-align: center !important; font-size: 1.1rem !important; From 058c011cb16f85c21b78e848c8a16e3c5abeadb1 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:39:17 -0400 Subject: [PATCH 22/34] Update style.css --- style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style.css b/style.css index a4cdb743..80f9dd7d 100644 --- a/style.css +++ b/style.css @@ -98,6 +98,7 @@ a.card div.h-6.w-6 { .nav-tabs { flex: 1 !important; gap: 0 !important; + justify-content: space-evenly !important; } /* Equal width tabs, text wraps if needed */ From efd8978159688473e260f5f9ddfa6fdaa093f203 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:43:21 -0400 Subject: [PATCH 23/34] Update style.css --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 80f9dd7d..8cd68daf 100644 --- a/style.css +++ b/style.css @@ -106,9 +106,9 @@ a.card div.h-6.w-6 { flex: none !important; justify-content: center !important; text-align: center !important; - font-size: 1.1rem !important; + font-size: 1.3rem !important; font-weight: 600 !important; - padding: 0.3rem 0.5rem !important; + padding: 0.3rem 0.3rem !important; border-radius: 5px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From e59988152cd34fc4f4fb2a12dcf8842ef0fd74ad Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:50:37 -0400 Subject: [PATCH 24/34] Update style.css --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 8cd68daf..e960ba5e 100644 --- a/style.css +++ b/style.css @@ -104,8 +104,8 @@ a.card div.h-6.w-6 { /* Equal width tabs, text wraps if needed */ .nav-tabs-item { flex: none !important; - justify-content: center !important; - text-align: center !important; + justify-content: left !important; + text-align: left !important; font-size: 1.3rem !important; font-weight: 600 !important; padding: 0.3rem 0.3rem !important; From 88178688e34913321845c8e0b4fcd7ec4bcd9ae6 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 1 Jul 2026 21:55:25 -0400 Subject: [PATCH 25/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index e960ba5e..18246eff 100644 --- a/style.css +++ b/style.css @@ -108,7 +108,7 @@ a.card div.h-6.w-6 { text-align: left !important; font-size: 1.3rem !important; font-weight: 600 !important; - padding: 0.3rem 0.3rem !important; + padding: 0.3rem 0rem !important; border-radius: 5px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From 362d06383f5e992e91a6ac15dd29927c6fc19760 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Thu, 2 Jul 2026 09:13:35 -0400 Subject: [PATCH 26/34] Update docs.json --- docs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.json b/docs.json index 2ce07f2f..219f1300 100644 --- a/docs.json +++ b/docs.json @@ -32,7 +32,7 @@ "navigation": { "tabs": [ { - "tab": "Docs", + "tab": "Documentation", "groups": [ { "group": "Get started", From 9a8a0439034e92caf9d32431c51848c1dc8299f3 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Thu, 2 Jul 2026 09:32:59 -0400 Subject: [PATCH 27/34] Update style.css --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 18246eff..432322f3 100644 --- a/style.css +++ b/style.css @@ -108,7 +108,7 @@ a.card div.h-6.w-6 { text-align: left !important; font-size: 1.3rem !important; font-weight: 600 !important; - padding: 0.3rem 0rem !important; + padding: 0.3rem 0 !important; border-radius: 5px !important; border: 1.5px solid transparent !important; transition: background 0.2s, border-color 0.2s !important; From 8176d721bb9af2ea773eb11d8b5e676863a3d0f6 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Tue, 7 Jul 2026 13:21:31 -0400 Subject: [PATCH 28/34] Update style.css --- style.css | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/style.css b/style.css index 432322f3..f2d7f8c2 100644 --- a/style.css +++ b/style.css @@ -97,31 +97,30 @@ a.card div.h-6.w-6 { /* Nav tabs - fill full navbar width */ .nav-tabs { flex: 1 !important; - gap: 0 !important; - justify-content: space-evenly !important; + gap: 24px !important; + justify-content: flex-start !important; + padding: 24px 48px !important; } -/* Equal width tabs, text wraps if needed */ +/* Tabs hug their own content width, text wraps if needed */ .nav-tabs-item { flex: none !important; justify-content: left !important; text-align: left !important; - font-size: 1.3rem !important; - font-weight: 600 !important; - padding: 0.3rem 0 !important; - border-radius: 5px !important; - border: 1.5px solid transparent !important; - transition: background 0.2s, border-color 0.2s !important; + font-size: 1.125rem !important; + font-weight: 400 !important; + padding: 0.5rem 1rem !important; + border-radius: 3px !important; + border: 1px solid rgba(255, 255, 255, 0.1) !important; + transition: border-color 0.2s !important; } /* Hover state */ .nav-tabs-item:hover { - background: rgba(95, 76, 254, 0.08) !important; - border-color: rgba(95, 76, 254, 0.3) !important; + border-color: #9289FE !important; } /* Active tab */ .nav-tabs-item[data-active="true"] { - background: rgba(95, 76, 254, 0.12) !important; - border-color: #5F4CFE !important; + border-color: #9289FE !important; } From 16a9f38f1a5bfcc665a8c5abc4dd42ea593dfe6f Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 12:09:28 -0400 Subject: [PATCH 29/34] Update style.css --- style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/style.css b/style.css index f2d7f8c2..1816d821 100644 --- a/style.css +++ b/style.css @@ -110,8 +110,7 @@ a.card div.h-6.w-6 { font-size: 1.125rem !important; font-weight: 400 !important; padding: 0.5rem 1rem !important; - border-radius: 3px !important; - border: 1px solid rgba(255, 255, 255, 0.1) !important; + border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; transition: border-color 0.2s !important; } From 9ff3625d3c2f3006a12f6f14badd145d89788691 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 12:42:34 -0400 Subject: [PATCH 30/34] Update style.css --- style.css | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/style.css b/style.css index 1816d821..7b3fb6e2 100644 --- a/style.css +++ b/style.css @@ -94,31 +94,18 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tabs - fill full navbar width */ -.nav-tabs { - flex: 1 !important; - gap: 24px !important; - justify-content: flex-start !important; - padding: 24px 48px !important; -} - /* Tabs hug their own content width, text wraps if needed */ .nav-tabs-item { flex: none !important; justify-content: left !important; text-align: left !important; - font-size: 1.125rem !important; + font-size: 1rem !important; font-weight: 400 !important; padding: 0.5rem 1rem !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; transition: border-color 0.2s !important; } -/* Hover state */ -.nav-tabs-item:hover { - border-color: #9289FE !important; -} - /* Active tab */ .nav-tabs-item[data-active="true"] { border-color: #9289FE !important; From 82f75b1d1f8f1548c9ab57643420015912cbc22b Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 12:51:45 -0400 Subject: [PATCH 31/34] Update style.css --- style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 7b3fb6e2..b214ed3d 100644 --- a/style.css +++ b/style.css @@ -94,12 +94,19 @@ a.card div.h-6.w-6 { margin-top: 1rem; } +/* Nav tabs - fill full navbar width */ +.nav-tabs { + flex: 1 !important; + justify-content: space-between !important; + padding: 24px 96px 24px 48px !important; +} + /* Tabs hug their own content width, text wraps if needed */ .nav-tabs-item { flex: none !important; justify-content: left !important; text-align: left !important; - font-size: 1rem !important; + font-size: 1.125rem !important; font-weight: 400 !important; padding: 0.5rem 1rem !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; From 899aa44a9c7ddfe78dcedeebcaab59477f4e350a Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 12:58:17 -0400 Subject: [PATCH 32/34] Update style.css --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index b214ed3d..19aa2dad 100644 --- a/style.css +++ b/style.css @@ -97,8 +97,9 @@ a.card div.h-6.w-6 { /* Nav tabs - fill full navbar width */ .nav-tabs { flex: 1 !important; - justify-content: space-between !important; - padding: 24px 96px 24px 48px !important; + justify-content: flex-start !important; + gap: 32px !important; + padding: 24px 48px !important; } /* Tabs hug their own content width, text wraps if needed */ From 56fcc160b7c80a8a2f82f4bd9a13876a7158deeb Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 13:01:52 -0400 Subject: [PATCH 33/34] Update style.css --- style.css | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/style.css b/style.css index 19aa2dad..7b3fb6e2 100644 --- a/style.css +++ b/style.css @@ -94,20 +94,12 @@ a.card div.h-6.w-6 { margin-top: 1rem; } -/* Nav tabs - fill full navbar width */ -.nav-tabs { - flex: 1 !important; - justify-content: flex-start !important; - gap: 32px !important; - padding: 24px 48px !important; -} - /* Tabs hug their own content width, text wraps if needed */ .nav-tabs-item { flex: none !important; justify-content: left !important; text-align: left !important; - font-size: 1.125rem !important; + font-size: 1rem !important; font-weight: 400 !important; padding: 0.5rem 1rem !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; From 019c3a4472bca85c1c6fbda2b91d9ad6d3ca44ba Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Wed, 8 Jul 2026 13:21:18 -0400 Subject: [PATCH 34/34] Update style.css --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 7b3fb6e2..2f79eb88 100644 --- a/style.css +++ b/style.css @@ -99,9 +99,9 @@ a.card div.h-6.w-6 { flex: none !important; justify-content: left !important; text-align: left !important; - font-size: 1rem !important; + font-size: 1.5rem !important; font-weight: 400 !important; - padding: 0.5rem 1rem !important; + padding: 1rem 1rem !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; transition: border-color 0.2s !important; }