claude-plan-viewer 1.1.0 → 1.1.1

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/styles.css +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-plan-viewer",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A web-based viewer for Claude Code plan files",
5
5
  "type": "module",
6
6
  "bin": {
package/styles.css CHANGED
@@ -822,10 +822,13 @@ tr.selected .title-btn {
822
822
  flex-direction: column;
823
823
  align-items: center;
824
824
  justify-content: center;
825
- height: 100%;
825
+ flex: 1;
826
+ width: 100%;
827
+ min-height: 100%;
826
828
  color: var(--text-muted);
827
829
  text-align: center;
828
830
  padding: 40px;
831
+ box-sizing: border-box;
829
832
  }
830
833
 
831
834
  .empty-state .icon {
@@ -850,7 +853,9 @@ tr.selected .title-btn {
850
853
  display: flex;
851
854
  align-items: center;
852
855
  justify-content: center;
853
- height: 100%;
856
+ flex: 1;
857
+ width: 100%;
858
+ min-height: 100%;
854
859
  color: var(--text-muted);
855
860
  }
856
861