@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.
@@ -4047,7 +4047,10 @@ const av = Ve(function({
4047
4047
  style: {
4048
4048
  position: "absolute",
4049
4049
  left: 0,
4050
- bottom: o.marginBottom,
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pygmalionjs/pygmalion",
3
- "version": "0.6.25",
3
+ "version": "0.6.26",
4
4
  "description": "Code-backed DOM design sandbox and visual QA editor",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {