From 5fbaec80668d43151b573ff87dc44e514f27ae29 Mon Sep 17 00:00:00 2001 From: ladybluenotes Date: Mon, 12 Jan 2026 10:56:41 -0800 Subject: [PATCH 1/3] feat: update padding to markdown alert content --- src/styles/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/app.css b/src/styles/app.css index 1addb3a7..f4bd963e 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -761,6 +761,10 @@ html.dark .shiki.vitesse-dark span[style*='color: #51597D'] { @apply flex justify-start items-center font-medium; } +.markdown-alert .markdown-alert-content { + @apply pr-5; +} + .bg-clip-text { @apply print:text-gray-800; } From 078f56531dc383b273c283fb7e015c6576f4d8d3 Mon Sep 17 00:00:00 2001 From: ladybluenotes Date: Mon, 12 Jan 2026 11:14:00 -0800 Subject: [PATCH 2/3] feat: update badge styles in Navbar component --- src/components/Navbar.tsx | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 0ae23384..bfc52c44 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -389,7 +389,7 @@ export function Navbar({ children }: { children: React.ReactNode }) { return indexA - indexB }) })().map((library, i) => { - const [prefix, name] = library.name.split(' ') + const [_, name] = library.name.split(' ') const isActive = library.to === activeLibrary?.to return ( @@ -458,10 +458,9 @@ export function Navbar({ children }: { children: React.ReactNode }) { {library.badge} @@ -504,13 +503,11 @@ export function Navbar({ children }: { children: React.ReactNode }) { {library.badge ? ( {library.badge} @@ -669,7 +666,7 @@ export function Navbar({ children }: { children: React.ReactNode }) { label: ( <> Feed - + Beta @@ -701,7 +698,7 @@ export function Navbar({ children }: { children: React.ReactNode }) { label: ( <> Learn - + NEW From 3884caa4386634aa0a09462d16c951d9450c6925 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 19:40:42 +0000 Subject: [PATCH 3/3] ci: apply automated fixes --- src/components/Navbar.tsx | 2 +- src/styles/app.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index bfc52c44..a68ee0ad 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -507,7 +507,7 @@ export function Navbar({ children }: { children: React.ReactNode }) { 'border bg-transparent', 'border-current text-current', 'opacity-90 group-hover:opacity-100 transition-opacity', - library.textColor + library.textColor, )} > {library.badge} diff --git a/src/styles/app.css b/src/styles/app.css index d710658c..5d87f124 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -762,7 +762,7 @@ html.dark .shiki.vitesse-dark span[style*='color: #51597D'] { } .markdown-alert .markdown-alert-content { - @apply pr-5; + @apply pr-5; } .bg-clip-text {