feat(ui): enhance loading spinner and update command configuration
- Increase rotating symbol size to 1.5rem for better visibility - Remove inline size classes in favor of CSS-based sizing - Add 'claude' command capability alongside 'claude-code' sidecar - Remove deprecated externalBin configuration from tauri.conf.json - Standardize rotating symbol styling across components This improves the visual feedback for loading states and cleans up the command execution configuration for better flexibility.
This commit is contained in:
@@ -879,7 +879,7 @@ export const ClaudeCodeSession: React.FC<ClaudeCodeSessionProps> = ({
|
||||
animate={{ opacity: 1 }}
|
||||
className="flex items-center justify-center py-4 mb-40"
|
||||
>
|
||||
<div className="rotating-symbol text-primary text-2xl" />
|
||||
<div className="rotating-symbol text-primary" />
|
||||
</motion.div>
|
||||
)}
|
||||
|
||||
@@ -1113,7 +1113,7 @@ export const ClaudeCodeSession: React.FC<ClaudeCodeSessionProps> = ({
|
||||
{isLoading && messages.length === 0 && (
|
||||
<div className="flex items-center justify-center h-full">
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="rotating-symbol text-primary text-2xl" />
|
||||
<div className="rotating-symbol text-primary" />
|
||||
<span className="text-sm text-muted-foreground">
|
||||
{session ? "Loading session history..." : "Initializing Claude Code..."}
|
||||
</span>
|
||||
|
Reference in New Issue
Block a user