diff options
| author | Clawd <ai@clawd.bot> | 2026-02-28 07:32:23 -0800 |
|---|---|---|
| committer | Clawd <ai@clawd.bot> | 2026-02-28 07:32:23 -0800 |
| commit | 35a38d909f1777e3b384ba26d68b88f641ec6a1a (patch) | |
| tree | 811e5763a5207433896c986e7654cd5bff9ad93e /renderer/src/styles | |
| parent | 6d70c5f8a3ed90564b08616a3fb041409916059c (diff) | |
Phase 5: Integration & polish
- Add error handling with auto-dismissing error bar
- Add keyboard shortcuts:
- Escape to interrupt Claude
- Cmd/Ctrl+Enter to submit
- Fix unused import warning
- Update README.md with project documentation
- Concept and workflow explanation
- UI layout diagram
- Installation and development instructions
- Project structure overview
- Keyboard shortcuts reference
Diffstat (limited to 'renderer/src/styles')
| -rw-r--r-- | renderer/src/styles/globals.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/renderer/src/styles/globals.css b/renderer/src/styles/globals.css index 57dc917..d917f7e 100644 --- a/renderer/src/styles/globals.css +++ b/renderer/src/styles/globals.css | |||
| @@ -389,3 +389,27 @@ body { | |||
| 389 | color: var(--success); | 389 | color: var(--success); |
| 390 | font-size: 14px; | 390 | font-size: 14px; |
| 391 | } | 391 | } |
| 392 | |||
| 393 | /* Error Bar */ | ||
| 394 | .error-bar { | ||
| 395 | display: flex; | ||
| 396 | justify-content: space-between; | ||
| 397 | align-items: center; | ||
| 398 | padding: 8px 16px; | ||
| 399 | background: var(--danger); | ||
| 400 | color: white; | ||
| 401 | font-size: 14px; | ||
| 402 | } | ||
| 403 | |||
| 404 | .error-bar button { | ||
| 405 | background: none; | ||
| 406 | border: none; | ||
| 407 | color: white; | ||
| 408 | font-size: 18px; | ||
| 409 | cursor: pointer; | ||
| 410 | padding: 0 4px; | ||
| 411 | } | ||
| 412 | |||
| 413 | .error-bar button:hover { | ||
| 414 | opacity: 0.8; | ||
| 415 | } | ||
