claude-roi 0.7.2 → 0.7.3
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/src/dashboard.html +5 -4
package/package.json
CHANGED
package/src/dashboard.html
CHANGED
|
@@ -593,15 +593,15 @@
|
|
|
593
593
|
color: var(--accent-blue);
|
|
594
594
|
}
|
|
595
595
|
@keyframes tooltipFade {
|
|
596
|
-
from { opacity: 0; transform:
|
|
597
|
-
to { opacity: 1; transform:
|
|
596
|
+
from { opacity: 0; transform: translateY(4px); }
|
|
597
|
+
to { opacity: 1; transform: translateY(0); }
|
|
598
598
|
}
|
|
599
599
|
.info-tip:hover::after {
|
|
600
600
|
content: attr(data-tip);
|
|
601
601
|
position: absolute;
|
|
602
602
|
bottom: calc(100% + 10px);
|
|
603
|
-
|
|
604
|
-
transform:
|
|
603
|
+
right: -12px;
|
|
604
|
+
transform: none;
|
|
605
605
|
background: var(--tooltip-bg);
|
|
606
606
|
backdrop-filter: blur(16px);
|
|
607
607
|
color: var(--text-secondary);
|
|
@@ -610,6 +610,7 @@
|
|
|
610
610
|
font-size: 0.75rem;
|
|
611
611
|
font-weight: 400;
|
|
612
612
|
width: 280px;
|
|
613
|
+
max-width: 80vw;
|
|
613
614
|
line-height: 1.5;
|
|
614
615
|
border: 1px solid var(--tooltip-border);
|
|
615
616
|
z-index: 100;
|