浏览代码

add theme color for logo text (#2000)

Matthew Callens 3 年之前
父节点
当前提交
fcc7addc66
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/src/components/Logo.jsx

+ 1 - 1
docs/src/components/Logo.jsx

@@ -4,7 +4,7 @@ export function Logo() {
   return (
     <div className="hidden min-w-full items-center gap-2 lg:flex">
       <Image src="/logo.png" alt="Logo" width={30} height={30} />
-      <span className="text-xl font-semibold">Anchor</span>
+      <span className="text-xl font-semibold dark:text-white">Anchor</span>
     </div>
   )
 }