Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions desktop/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,7 @@ html[data-platform="macos"] .titlebar .tb-left {
display: inline-flex;
align-items: center;
flex-wrap: nowrap;
overflow: hidden;
gap: 8px;
padding: 0 10px;
font-size: 14px;
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/ui/useResizable.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useCallback, useEffect, useRef, useState } from "react";
import { getThreadMaxWidth } from "./thread-layout";

const MIN_WIDTH = 200;
const MIN_WIDTH = 220;
const MAX_WIDTH_PCT = 0.4;
const CSS_VAR = { side: "--side-width", ctx: "--ctx-width" } as const;
const PERSIST_KEY_SIDE = "reasonix.sideWidth";
Expand Down