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.
- package/package.json +1 -1
- package/styles.css +7 -2
package/package.json
CHANGED
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
|
-
|
|
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
|
-
|
|
856
|
+
flex: 1;
|
|
857
|
+
width: 100%;
|
|
858
|
+
min-height: 100%;
|
|
854
859
|
color: var(--text-muted);
|
|
855
860
|
}
|
|
856
861
|
|