@kywi-software/core 0.6.6 → 0.6.7
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/site/styles.css +7 -3
- package/package.json +1 -1
package/dist/site/styles.css
CHANGED
|
@@ -671,7 +671,8 @@ body.kywi-selfid-hello-bar-top-open {
|
|
|
671
671
|
.kywi-selfid-skip:hover { color: var(--kywi-color-text, #0f172a); }
|
|
672
672
|
|
|
673
673
|
/* Transparency surface — the single global personalization control (#105).
|
|
674
|
-
* Anchored to the bottom-
|
|
674
|
+
* Anchored to the bottom-left corner as a small pill (the self-ID slide-in owns
|
|
675
|
+
* the bottom-right); clicking the pill swaps
|
|
675
676
|
* it for the panel (which audience, switch, reset, opt out). This file is the
|
|
676
677
|
* ONLY stylesheet for it — the runtime injects nothing of its own. */
|
|
677
678
|
/* These surfaces are injected into whatever the host page's CSS reset is, so
|
|
@@ -686,12 +687,15 @@ body.kywi-selfid-hello-bar-top-open {
|
|
|
686
687
|
}
|
|
687
688
|
.kywi-transparency {
|
|
688
689
|
position: fixed;
|
|
689
|
-
|
|
690
|
+
/* Bottom-LEFT, deliberately: the self-ID slide-in card owns the bottom-right
|
|
691
|
+
corner, and stacking both there leaves the pill unreachable underneath the
|
|
692
|
+
card (caught in live UAT). Two fixed personalization surfaces, two corners. */
|
|
693
|
+
left: var(--kywi-spacing-lg, 1.5rem);
|
|
690
694
|
bottom: var(--kywi-spacing-lg, 1.5rem);
|
|
691
695
|
z-index: 55;
|
|
692
696
|
display: flex;
|
|
693
697
|
flex-direction: column;
|
|
694
|
-
align-items: flex-
|
|
698
|
+
align-items: flex-start;
|
|
695
699
|
gap: var(--kywi-spacing-sm, 0.5rem);
|
|
696
700
|
width: max-content;
|
|
697
701
|
max-width: min(22rem, calc(100vw - 2rem));
|