diff --git a/src/components/gui/query-result-table.tsx b/src/components/gui/query-result-table.tsx index 69f4d809..be013858 100644 --- a/src/components/gui/query-result-table.tsx +++ b/src/components/gui/query-result-table.tsx @@ -88,7 +88,9 @@ function Header({ }} > {header.icon ?
{header.icon}
: null} -
{header.displayName}
+
+ {header.displayName} +
diff --git a/src/components/gui/table-cell/create-editable-cell.tsx b/src/components/gui/table-cell/create-editable-cell.tsx index acd68841..1b15148d 100644 --- a/src/components/gui/table-cell/create-editable-cell.tsx +++ b/src/components/gui/table-cell/create-editable-cell.tsx @@ -87,8 +87,8 @@ function InputCellEditor({ type="text" className={ align === "right" - ? "bg-background w-full h-full outline-none pl-2 pr-2 border-0 text-right" - : "bg-background w-full h-full outline-none pl-2 pr-2 border-0" + ? "font-mono bg-background w-full h-full outline-none pl-2 pr-2 border-0 text-right" + : "font-mono bg-background w-full h-full outline-none pl-2 pr-2 border-0" } value={value ?? ""} /> diff --git a/src/components/gui/table-cell/generic-cell.tsx b/src/components/gui/table-cell/generic-cell.tsx index 4a542a58..4bc70fdd 100644 --- a/src/components/gui/table-cell/generic-cell.tsx +++ b/src/components/gui/table-cell/generic-cell.tsx @@ -21,7 +21,7 @@ export default function GenericCell({ onDoubleClick, }: TableCellProps) { const className = [ - "libsql-cell", + "libsql-cell font-mono", focus ? "libsql-focus" : null, "pl-2 pr-2", isChanged ? "libsql-change" : null,