Skip to content

Commit 3fecdfe

Browse files
committed
decrease height of header bar and use small logo
1 parent f2a63be commit 3fecdfe

2 files changed

Lines changed: 28 additions & 3 deletions

File tree

Lines changed: 25 additions & 0 deletions
Loading

builder-frontend/src/components/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useAuth } from "../context/AuthContext";
22
import { useLocation, useNavigate } from "@solidjs/router";
33

4-
import bdtLogo from "../assets/logos/bdt-logo-large-mono-light.svg";
4+
import bdtLogo from "../assets/logos/bdt-logo-small-mono-light.svg";
55
import { Show } from "solid-js";
66

77
const HeaderButton = ({
@@ -37,12 +37,12 @@ export default function Header() {
3737
};
3838

3939
return (
40-
<header class="bg-gray-200 min-h-24 h-24 px-4 flex items-center justify-between border-b-2 border-gray-300">
40+
<header class="bg-gray-200 min-h-12 h-12 px-4 flex items-center justify-between border-b-2 border-gray-300">
4141
<div class="flex items-center space-x-6">
4242
<img
4343
src={bdtLogo}
4444
alt="BDT logo"
45-
class="w-36 cursor-pointer"
45+
class="w-18 cursor-pointer"
4646
onClick={() => navigate("/")}
4747
/>
4848
</div>

0 commit comments

Comments
 (0)