Restore bubble to Maybe

Stalled cards in Maybe are often out of view
This commit is contained in:
Jason Zimdars
2025-11-24 11:51:46 -06:00
parent dc2d86ca54
commit 3a2b347aba
+6
View File
@@ -681,6 +681,7 @@
/* -------------------------------------------------------------------------- */
/* Surface a mini bubble if there are cards with bubbles inside */
.cards--considering:has(.bubble:not([hidden])),
.cards--doing.is-collapsed:has(.bubble:not([hidden])) {
.cards__transition-container {
--bubble-color: var(--card-color, oklch(var(--lch-blue-medium)));
@@ -700,6 +701,11 @@
translate: 20% -20%;
z-index: 1;
}
.cards--considering &:before {
inset: 0 auto auto 0;
translate: 100% 75%;
}
}
}