claude-remote-cli 1.4.3 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/style.css +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-remote-cli",
3
- "version": "1.4.3",
3
+ "version": "1.5.0",
4
4
  "description": "Remote web interface for Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "main": "dist/server/index.js",
package/public/style.css CHANGED
@@ -417,6 +417,7 @@ html, body {
417
417
 
418
418
  /* ===== Touch Toolbar ===== */
419
419
  #toolbar {
420
+ display: none;
420
421
  flex-shrink: 0;
421
422
  background: var(--surface);
422
423
  border-top: 1px solid var(--border);
@@ -993,6 +994,10 @@ dialog#delete-worktree-dialog h2 {
993
994
  .tb-btn.tb-arrow {
994
995
  font-size: 1.2rem;
995
996
  }
997
+
998
+ #toolbar {
999
+ display: block;
1000
+ }
996
1001
  }
997
1002
 
998
1003
  /* ===== Scrollbar ===== */