File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export default function BlogLayout({
58
58
function SmallAuthor ( { author } : { author : AuthorData } ) {
59
59
return (
60
60
< a
61
- className = "flex flex-row items-center gap-1 text-foreground"
61
+ className = "flex flex-row items-center gap-1.5 text-foreground"
62
62
href = { author . url ?? "#" }
63
63
rel = "nofollow noreferrer"
64
64
target = "_blank"
@@ -70,7 +70,7 @@ function SmallAuthor({ author }: { author: AuthorData }) {
70
70
src = { author . image_url }
71
71
width = { 25 }
72
72
height = { 25 }
73
- className = "rounded-full"
73
+ className = "h-full rounded-full"
74
74
/>
75
75
) }
76
76
{ author . name }
@@ -111,7 +111,7 @@ function Footer({ page }: { page: Page }) {
111
111
src = { author . image_url }
112
112
width = { 40 }
113
113
height = { 40 }
114
- className = "rounded-full"
114
+ className = "h-full rounded-full"
115
115
/>
116
116
) }
117
117
< div >
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const metadata: Metadata = {
39
39
40
40
export default function RootLayout ( { children } : { children : ReactNode } ) {
41
41
return (
42
- < html lang = "zh-Hant-TW" className = { noto . className } >
42
+ < html lang = "zh-Hant-TW" className = { noto . className } suppressHydrationWarning >
43
43
< body className = "flex min-h-screen flex-col" >
44
44
< AdsProvider >
45
45
< NextDocsProvider >
You can’t perform that action at this time.
0 commit comments