Skip to content

Commit 8d194aa

Browse files
committed
fix: パンくずリストのコンポーネントのスタイルを修正
1 parent 30e6101 commit 8d194aa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

website/src/components/ui/common/Breadcrumbs.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,28 @@ export type BreadcrumbsProps = {
88
export const Breadcrumbs = ({ path }: BreadcrumbsProps) => {
99
return (
1010
<nav class="flex justify-between px-3.5 py-1 border border-neutral-200/60 rounded-md">
11-
<ol class="inline-flex items-center mb-3 space-x-1 text-xs text-neutral-500 [&_.active-breadcrumb]:text-neutral-600 [&_.active-breadcrumb]:font-medium sm:mb-0">
11+
<ol class="inline-flex items-center mb-3 space-x-1 text-sm text-gray-600 sm:mb-0">
1212
<li class="flex items-center h-full">
13-
<a href="/docs/" class="py-1 hover:text-neutral-900">
13+
<a href="/docs/" class="py-1 hover:text-gray-800 transition-colors">
1414
<div class="w-4 h-4">
1515
<HomeIcon />
1616
</div>
1717
</a>
1818
</li>
1919
{path.map((item, idx) => (
2020
<>
21-
<div class="w-4 h-4 text-gray-400/70">
21+
<div class="w-4 h-4 text-gray-400">
2222
<ChevronRightIcon />
2323
</div>
2424
<li>
2525
{idx === path.length - 1 ? (
26-
<a class="inline-flex items-center py-1 font-semibold text-neutral-700 rounded cursor-default focus:outline-none">
26+
<span class="inline-flex items-center py-1 font-semibold text-gray-800 cursor-default">
2727
{item.title}
28-
</a>
28+
</span>
2929
) : (
3030
<a
3131
href={item.route}
32-
class="inline-flex items-center py-1 font-normal hover:text-neutral-900 focus:outline-none"
32+
class="inline-flex items-center py-1 hover:text-gray-800 transition-colors focus:outline-none"
3333
>
3434
{item.title}
3535
</a>

0 commit comments

Comments
 (0)