File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/(common)/components/timeline Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default function CodeBlock({ title, children }: CodeBlockProps) {
22
22
return (
23
23
< div
24
24
ref = { animation }
25
- className = "dark bg-blue-black dark:bg-blue-darkest rounded-2xl p-6 w-full flex flex-col shadow-xl my-4 | sm:my-8 md:absolute md:right-[calc(100%+3rem)] md:w-full md:max-w-lg md:my-0"
25
+ className = "dark text-left bg-blue-black dark:bg-blue-darkest rounded-2xl p-6 w-full flex flex-col shadow-xl my-4 | sm:my-8 md:absolute md:right-[calc(100%+3rem)] md:w-full md:max-w-lg md:my-0"
26
26
>
27
27
< div className = "flex flew-row items-center gap-2" >
28
28
< div className = "rounded-full w-3 h-3 bg-[#ed6a5d]" />
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export default function MobileSideBar({
52
52
/>
53
53
</ svg >
54
54
</ button >
55
- < div className = "pl-4 flex flex-row gap-1 items-center justify-center leading-none text-sm font-light text-text-secondary" >
55
+ < div className = "pl-4 flex flex-row gap-1 items-center justify-center leading-none text-sm font-light text-text-secondary dark:text-white/70 " >
56
56
{ breadCrumbs . map ( ( docLink , index ) => (
57
57
< Fragment key = { docLink . title } >
58
58
{ docLink . link ? (
@@ -67,7 +67,7 @@ export default function MobileSideBar({
67
67
< span
68
68
className = { `${
69
69
index === breadCrumbs . length - 1 &&
70
- "font-bold text-text-primary text-ellipsis whitespace-nowrap overflow-hidden"
70
+ "font-bold text-text-primary text-ellipsis whitespace-nowrap overflow-hidden dark:text-white/50 "
71
71
} `}
72
72
>
73
73
{ docLink . title }
You can’t perform that action at this time.
0 commit comments