@akropolys/kiku 1.6.10 → 1.7.0

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/styles.css CHANGED
@@ -3548,4 +3548,35 @@
3548
3548
  .hsk-lightbox-close:hover {
3549
3549
  background: rgba(255, 255, 255, 0.28);
3550
3550
  }
3551
+ .hsk-cb-viz {
3552
+ margin-top: 10px;
3553
+ animation: hsk-msg-in .2s ease-out both;
3554
+ }
3555
+ .hsk-cb-viz img {
3556
+ width: 100%;
3557
+ max-width: 420px;
3558
+ border-radius: 8px;
3559
+ display: block;
3560
+ }
3561
+ .hsk-cb-viz--loading {
3562
+ display: flex;
3563
+ align-items: center;
3564
+ gap: 8px;
3565
+ font-size: 12px;
3566
+ color: var(--hsk-chat-muted, #888);
3567
+ padding: 10px 0;
3568
+ }
3569
+ .hsk-cb-viz-spinner {
3570
+ width: 14px;
3571
+ height: 14px;
3572
+ border-radius: 50%;
3573
+ border: 2px solid var(--hsk-chat-divide, rgba(0,0,0,.15));
3574
+ border-top-color: var(--hsk-primary, #ff6a33);
3575
+ animation: hsk-viz-spin .7s linear infinite;
3576
+ }
3577
+ @keyframes hsk-viz-spin {
3578
+ to {
3579
+ transform: rotate(360deg);
3580
+ }
3581
+ }
3551
3582
  /*# sourceMappingURL=styles.css.map */