Updated logo size in Logo.tsx
Adjusted logo size mappings to enlarge logotype (small: h-16, default: h-24, large: h-40) to better fit header/footer after PNG yes. X-Lovable-Edit-ID: edt-81801528-3ad9-4180-aa1e-ae9a7b41e9b1
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 961 KiB |
@@ -2,9 +2,9 @@ import logoImage from "@/assets/logo.png";
|
||||
|
||||
const Logo = ({ className = "", size = "default" }: { className?: string; size?: "small" | "default" | "large" }) => {
|
||||
const sizeClasses = {
|
||||
small: "h-12",
|
||||
default: "h-20",
|
||||
large: "h-32"
|
||||
small: "h-16",
|
||||
default: "h-24",
|
||||
large: "h-40"
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user