Skip to content

Commit 1efaf37

Browse files
committed
fix: logo sizing
1 parent db754ad commit 1efaf37

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/components/Logo.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,9 @@ interface PhotoCircleProps {
99
sizeClasses?: string;
1010
}
1111

12-
export default function Logo({
13-
lightSrc,
14-
darkSrc,
15-
alt,
16-
sizeClasses = "w-72 h-72 xl:w-96 xl:h-96",
17-
}: PhotoCircleProps) {
12+
export default function Logo({ lightSrc, darkSrc, alt }: PhotoCircleProps) {
1813
return (
19-
<div className={`relative ${sizeClasses}`}>
14+
<div className={`xl:w-128 xl:h-128 relative h-96 w-96`}>
2015
<div className="h-full w-full">
2116
<img
2217
src={lightSrc}

0 commit comments

Comments
 (0)