Skip to content

Commit

Permalink
Do not consider safe areas for the skip message overlay.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 0ff833a32eebcf5b99c7c181b0a0233af0a31736
  • Loading branch information
cpojer committed Nov 18, 2024
1 parent 343a8ba commit 9f62409
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hera/ui/SkipMessages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ export default function SkipMessages() {
const absoluteStyle = css`
pointer-events: none;
position: fixed;
right: env(safe-area-inset-right);
top: env(safe-area-inset-top);
right: 0;
top: 0;
z-index: 3002;
`;

Expand All @@ -79,8 +79,8 @@ const skipMessagesStyle = css`
height: ${DoubleSize}px;
line-height: ${DoubleSize}px;
position: fixed;
right: env(safe-area-inset-right);
top: env(safe-area-inset-top);
right: 0;
top: 0;
z-index: 3003;
`;

Expand Down

0 comments on commit 9f62409

Please sign in to comment.