claude-roi 0.7.1 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-roi",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "Correlate Claude Code token usage with git output to measure AI coding agent ROI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -593,15 +593,15 @@
593
593
  color: var(--accent-blue);
594
594
  }
595
595
  @keyframes tooltipFade {
596
- from { opacity: 0; transform: translateX(-50%) translateY(4px); }
597
- to { opacity: 1; transform: translateX(-50%) translateY(0); }
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
- left: 50%;
604
- transform: translateX(-50%) translateY(0);
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;