Skip to content

Commit 623ecf8

Browse files
committed
add small logo and narrow header bar
1 parent a5f3957 commit 623ecf8

2 files changed

Lines changed: 28 additions & 3 deletions

File tree

Lines changed: 25 additions & 0 deletions
Loading

builder-frontend/src/components/Header/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useAuth } from "../../context/AuthContext";
22
import { useLocation, useNavigate } from "@solidjs/router";
33
import { Component, For, Show } from "solid-js";
44

5-
import bdtLogo from "@/assets/logos/bdt-logo-large-mono-light.svg";
5+
import bdtLogo from "@/assets/logos/bdt-logo-small-mono-light.svg";
66
import { HamburgerMenu } from "@/components/shared/HamburgerMenu";
77

88
import "./Header.css";
@@ -79,12 +79,12 @@ export default function Header() {
7979
};
8080

8181
return (
82-
<header class="bg-gray-200 min-h-24 h-24 px-4 flex items-center justify-between border-b-2 border-gray-300">
82+
<header class="bg-gray-200 min-h-12 h-12 px-4 flex items-center justify-between border-b-2 border-gray-300">
8383
<div class="flex items-center space-x-6">
8484
<img
8585
src={bdtLogo}
8686
alt="BDT logo"
87-
class="w-36 cursor-pointer"
87+
class="w-18 cursor-pointer"
8888
onClick={() => navigate("/")}
8989
/>
9090
</div>

0 commit comments

Comments
 (0)