diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 0ae23384..a68ee0ad 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 diff --git a/src/styles/app.css b/src/styles/app.css index 82d4eacb..5d87f124 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; }