We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074dbfc commit 3a590b0Copy full SHA for 3a590b0
frontend/src/components/WorkspaceNav.tsx
@@ -12,7 +12,7 @@ export default function WorkspaceNav({
12
<div className="h-5 w-5 rounded-md">
13
<img src={imageUrl} />
14
</div>
15
- <h1 className="font-bold">{workspaceTitle}</h1>
+ <h1 className="text-lg font-bold">{workspaceTitle}</h1>
16
17
);
18
}
frontend/src/components/sidebar/TopNav.tsx
@@ -6,7 +6,7 @@ import logo from "/logo.png?url";
6
7
export default function TopNav() {
8
return (
9
- <div className="flex items-center justify-center gap-2">
+ <div className="flex items-center gap-2">
10
<LogoBtn />
11
<VerticalDivider className="h-3" />
<WorkspaceNav imageUrl={logo} workspaceTitle="프로젝트 Web15" />
0 commit comments