mobile-snap 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/bin/cli.js +4 -4
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -703,10 +703,10 @@ async function injectSafeAreas(page, platform) {
703
703
  await page.addStyleTag({
704
704
  content: `
705
705
  :root {
706
- --safe-top: 47px !important;
706
+ --safe-top: 52px !important;
707
707
  }
708
708
  .nav-container {
709
- padding-bottom: 34px !important;
709
+ padding-bottom: 5px !important;
710
710
  }
711
711
  `
712
712
  });
@@ -714,10 +714,10 @@ async function injectSafeAreas(page, platform) {
714
714
  await page.addStyleTag({
715
715
  content: `
716
716
  :root {
717
- --safe-top: 24px !important;
717
+ --safe-top: 29px !important;
718
718
  }
719
719
  .nav-container {
720
- padding-bottom: 16px !important;
720
+ padding-bottom: 5px !important;
721
721
  }
722
722
  `
723
723
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobile-snap",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Automate pixel-precise App Store & Google Play screenshots from a local web server",
5
5
  "type": "module",
6
6
  "main": "bin/cli.js",