diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index 9c3242d..25f4b85 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -18,6 +18,11 @@ "name": "claude-code", "sidecar": true, "args": true + }, + { + "name": "claude", + "sidecar": false, + "args": true } ] }, @@ -28,6 +33,11 @@ "name": "claude-code", "sidecar": true, "args": true + }, + { + "name": "claude", + "sidecar": false, + "args": true } ] }, diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 860c55c..684d941 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -57,9 +57,6 @@ "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.png" - ], - "externalBin": [ - "binaries/claude-code" ] } } diff --git a/src/assets/shimmer.css b/src/assets/shimmer.css index 3284597..2ddb2a2 100644 --- a/src/assets/shimmer.css +++ b/src/assets/shimmer.css @@ -102,7 +102,7 @@ .rotating-symbol { display: inline-block; color: #d97757; - font-size: inherit; + font-size: 1.5rem; /* Make it bigger! */ margin-right: 0.5rem; font-weight: bold; vertical-align: text-bottom; diff --git a/src/components/ClaudeCodeSession.tsx b/src/components/ClaudeCodeSession.tsx index e13ae7e..4aec76c 100644 --- a/src/components/ClaudeCodeSession.tsx +++ b/src/components/ClaudeCodeSession.tsx @@ -879,7 +879,7 @@ export const ClaudeCodeSession: React.FC = ({ animate={{ opacity: 1 }} className="flex items-center justify-center py-4 mb-40" > -
+
)} @@ -1113,7 +1113,7 @@ export const ClaudeCodeSession: React.FC = ({ {isLoading && messages.length === 0 && (
-
+
{session ? "Loading session history..." : "Initializing Claude Code..."} diff --git a/src/styles.css b/src/styles.css index 077c8b9..fc8ab23 100644 --- a/src/styles.css +++ b/src/styles.css @@ -446,6 +446,7 @@ button:focus-visible, line-height: 1; animation: fade-in 0.2s ease-out; font-weight: normal; + font-size: 1.5rem; /* Make it bigger! */ } .rotating-symbol::before { @@ -458,11 +459,7 @@ button:focus-visible, transform-origin: center; } -/* Make the rotating symbol more prominent at larger sizes */ -.rotating-symbol.text-xl::before, -.rotating-symbol.text-2xl::before { - font-weight: 900; -} +/* Removed special font-weight for larger sizes to maintain consistency */ /* Shimmer hover effect */ @keyframes shimmer {