@deque/cauldron-styles 4.7.0-canary.b6bfee02 → 4.7.0-canary.d3b8c1a5
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/dist/index.css +5 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2530,16 +2530,18 @@ p .Link {
|
|
|
2530
2530
|
width: 0.1px;
|
|
2531
2531
|
}
|
|
2532
2532
|
|
|
2533
|
+
/* Adjust position to try to center the arrow in the tooltip's border */
|
|
2534
|
+
|
|
2533
2535
|
[class*='Tooltip--top'] .TooltipArrow {
|
|
2534
|
-
bottom:
|
|
2536
|
+
bottom: -1px;
|
|
2535
2537
|
}
|
|
2536
2538
|
|
|
2537
2539
|
[class*='Tooltip--bottom'] .TooltipArrow {
|
|
2538
|
-
top:
|
|
2540
|
+
top: -1px;
|
|
2539
2541
|
}
|
|
2540
2542
|
|
|
2541
2543
|
[class*='Tooltip--left'] .TooltipArrow {
|
|
2542
|
-
right:
|
|
2544
|
+
right: -1px;
|
|
2543
2545
|
}
|
|
2544
2546
|
|
|
2545
2547
|
[class*='Tooltip--right'] .TooltipArrow {
|
package/package.json
CHANGED