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 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", diff --git a/style.css b/style.css index 79147e98..2f79eb88 100644 --- a/style.css +++ b/style.css @@ -93,3 +93,20 @@ a.card div.h-6.w-6 { .overview-page-wrapper p + p { margin-top: 1rem; } + +/* 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.5rem !important; + font-weight: 400 !important; + padding: 1rem 1rem !important; + border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; + transition: border-color 0.2s !important; +} + +/* Active tab */ +.nav-tabs-item[data-active="true"] { + border-color: #9289FE !important; +}