@gendive/chatllm 0.6.9 → 0.6.10

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.
@@ -2207,18 +2207,19 @@ var ImageWithCopyButton = ({ src, alt, imageKey }) => {
2207
2207
  {
2208
2208
  style: {
2209
2209
  position: "absolute",
2210
- bottom: "0",
2211
- left: "0",
2212
- right: "0",
2210
+ bottom: "8px",
2211
+ left: "8px",
2212
+ right: "8px",
2213
2213
  display: "flex",
2214
2214
  alignItems: "center",
2215
2215
  gap: "4px",
2216
2216
  padding: "8px 12px",
2217
- backgroundColor: "var(--chatllm-bg, #ffffff)",
2218
- borderTop: "1px solid var(--chatllm-border-light, #e5e7eb)",
2219
- borderRadius: "0 0 8px 8px",
2217
+ backgroundColor: "rgba(255, 255, 255, 0.95)",
2218
+ backdropFilter: "blur(8px)",
2219
+ borderRadius: "8px",
2220
+ boxShadow: "0 2px 8px rgba(0, 0, 0, 0.15)",
2220
2221
  opacity: isHovered ? 1 : 0,
2221
- transform: isHovered ? "translateY(0)" : "translateY(8px)",
2222
+ transform: isHovered ? "translateY(0)" : "translateY(4px)",
2222
2223
  transition: "opacity 0.2s ease, transform 0.2s ease",
2223
2224
  pointerEvents: isHovered ? "auto" : "none"
2224
2225
  },