@pygmalionjs/pygmalion 0.6.25 → 0.6.26
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-lib/pygmalion.js +4 -1
- package/package.json +1 -1
package/dist-lib/pygmalion.js
CHANGED
|
@@ -4047,7 +4047,10 @@ const av = Ve(function({
|
|
|
4047
4047
|
style: {
|
|
4048
4048
|
position: "absolute",
|
|
4049
4049
|
left: 0,
|
|
4050
|
-
bottom:
|
|
4050
|
+
// The containing block is the frame wrapper. `bottom: 8px` would put
|
|
4051
|
+
// this banner inside the screen's lower edge; clearing the wrapper's
|
|
4052
|
+
// full height anchors the banner above the actual viewport instead.
|
|
4053
|
+
bottom: `calc(100% + ${o.marginBottom}px)`,
|
|
4051
4054
|
zIndex: 4,
|
|
4052
4055
|
display: "flex",
|
|
4053
4056
|
alignItems: "center",
|