Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f3e75bc8b5
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255,255,255,0.08); | ||
| color: var(--ink); | ||
| overflow: hidden; |
There was a problem hiding this comment.
Reinstate closed-state hiding for dialog fallback
With the display: none / dialog[open] { display: block; } rules removed, the Exhale Note dialog now relies entirely on native <dialog> UA styles to hide when closed. On browsers that lack native <dialog> support (older iOS Safari / embedded WebViews), unknown elements are rendered inline, so the modal content is always visible even when noteOpen is false and safeShowDialog only toggles the open attribute. That breaks the verify page layout for those mobile users; restoring an explicit closed-state hide (or a data-open-based rule) keeps the fallback path functional.
Useful? React with 👍 / 👎.
Reverts #342