Skip to content

Commit b46bd3c

Browse files
authored
Merge pull request #5 from JS00001/main
try and fix windows sizing
2 parents e616ff5 + 56195ca commit b46bd3c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bridge/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "HTTP Interceptor",
4-
"version": "0.1.6",
4+
"version": "0.1.7",
55
"identifier": "com.http-interceptor.js00001",
66
"build": {
77
"beforeDevCommand": "npm run dev",

ui/components/json-viewer/Group.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ export default function Group({ nodeKey, expanded, level, value }: GroupProps) {
1111
return (
1212
<div style={{ paddingLeft: level * 16 }} className="w-full hover:bg-primary-50 -ml-4">
1313
<p className="truncate text-gray-800 w-full text-[11px]">
14-
<span className="mr-2">{arrow}</span>
15-
<span className="text-fuchsia-800 shrink-0">{nodeKey}</span>
16-
{nodeKey && <span className="mr-2">:</span>}
14+
<span className="mr-2 text-[11px]">{arrow}</span>
15+
<span className="text-fuchsia-800 shrink-0 text-[11px]">{nodeKey}</span>
16+
{nodeKey && <span className="mr-2 text-[11px]">:</span>}
1717
{value}
1818
</p>
1919
</div>

ui/components/json-viewer/Node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ export default function Node({ nodeKey, path, data, level, editable, onChange }:
124124
}
125125

126126
function StringQuotation() {
127-
return <span className="text-green-600">"</span>;
127+
return <span className="text-green-600 text-[11px]">"</span>;
128128
}

0 commit comments

Comments
 (0)