We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7b3801 commit 0dcd5b7Copy full SHA for 0dcd5b7
2 files changed
apps/desktop/src/session/components/outer-header/index.test.tsx
@@ -164,7 +164,7 @@ describe("OuterHeader", () => {
164
const header = titleSlot?.parentElement;
165
166
expect(header?.className).toContain("pl-[156px]");
167
- expect(header?.className).toContain("h-11");
+ expect(header?.className).toContain("h-12");
168
expect(header?.className).not.toContain("pb-1");
169
expect(titleWrapper?.classList.contains("w-full")).toBe(false);
170
expect(titleWrapper?.className).toContain("max-w-full");
apps/desktop/src/session/components/outer-header/index.tsx
@@ -37,7 +37,7 @@ export function OuterHeader({
37
<div
38
className={cn([
39
"relative flex w-full items-center",
40
- showSidebarTimelineHeaderGutter ? "h-11" : "h-12",
+ "h-12",
41
showSidebarTimelineHeaderGutter && "pl-[156px]",
42
])}
43
>
0 commit comments