Skip to content

Commit

Permalink
Restore negative margin in DebugInfoOverlay
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnplb committed Jan 21, 2025
1 parent 16bba94 commit a3dc994
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ PODS:
- React-Core
- react-native-render-html (6.3.1):
- React-Core
- react-native-safe-area-context (4.11.1):
- react-native-safe-area-context (5.1.0):
- React-Core
- react-native-screen-brightness (2.0.0-alpha):
- React
Expand Down Expand Up @@ -2532,7 +2532,7 @@ SPEC CHECKSUMS:
react-native-pdf: c089a365d5d3b9614cce4a1cca429a71eb037a55
react-native-pdf-thumbnail: b811c3676a0799d49e4885817ad79aa1d5c05168
react-native-render-html: 05a7d4490ffc85c88094601207f3e48a90533476
react-native-safe-area-context: 17a482f540310e2209f884fd49472d9e1c0e73d6
react-native-safe-area-context: e134b241010ebe2aacdcea013565963d13826faa
react-native-screen-brightness: 16a7b26d12d89654fc6a2e9ff1e55c1a4a10afcb
react-native-skia: 3054428a8b83ff083d7036e2bd73cda213326b1a
react-native-slider: 5299110eb902bc5169b1dd94192aa28e1bf15ad8
Expand Down
4 changes: 2 additions & 2 deletions ts/components/DebugInfoOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "@pagopa/io-app-design-system";

import { FunctionComponent, useState } from "react";
import { Pressable, StyleSheet, View } from "react-native";
import { Platform, Pressable, StyleSheet, View } from "react-native";
import { widthPercentageToDP } from "react-native-responsive-screen";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { connect } from "react-redux";
Expand All @@ -31,7 +31,7 @@ const debugItemBorderColor = hexToRgba(IOColors.black, 0.1);
const styles = StyleSheet.create({
versionContainer: {
...StyleSheet.absoluteFillObject,
// top: Platform.OS === "android" ? 0 : -8,
top: Platform.OS === "android" ? 0 : -8,
justifyContent: "flex-start",
alignItems: "center",
zIndex: 1000
Expand Down

0 comments on commit a3dc994

Please sign in to comment.