Skip to content

Commit

Permalink
Fix padding bug
Browse files Browse the repository at this point in the history
Signed-off-by: YouXam <[email protected]>
  • Loading branch information
YouXam committed Dec 9, 2024
1 parent c8a489b commit ca7e7da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function Logo({
switch (size) {
case 0:
return (
<h1 className={`text-3xl md:text-4xl text-center font-bold italic select-none ` + className} style={{ fontFamily: "'Saira Variable', sans-serif" }}>
<h1 className={`text-3xl md:text-4xl text-center font-bold italic select-none ` + className} style={{ fontFamily: "'Saira Variable', sans-serif" }}>
byrdocs<span className={`text-xl md:text-2xl`}>.org</span>
</h1>
)
Expand Down
4 changes: 2 additions & 2 deletions src/components/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ export function Search({ onPreview: onLayoutPreview }: { onPreview: (preview: bo
}
)}>
<div className={cn(
"w-full pb-24",
"w-full",
{
"my-auto": !top,
"my-auto pb-24": !top
}
)}>
<div className={cn(
Expand Down

0 comments on commit ca7e7da

Please sign in to comment.