Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 85c1017072
ℹ️ 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".
| @media screen and (max-width: 767px), | ||
| screen and (hover: none) and (pointer: coarse) and (max-width: 932px) { |
There was a problem hiding this comment.
Restrict the coarse-pointer override to phones
On touch tablets such as an iPad in portrait (~834 CSS px, hover:none/pointer:coarse), this second media query matches even though the viewport is wider than 767px, so every phone-only override in this file runs. That collapses the tablet layout to a single-column .bento and hides topbar actions, whereas the existing tablet breakpoint in src/styles.css keeps several cards in two columns until the narrower phone breakpoint, so real tablets regress despite the stated goal of leaving tablet layouts untouched.
Useful? React with 👍 / 👎.
Motivation
Description
src/mobile-fix.csswith comprehensive real-device mobile overrides and imported it fromsrc/main.jsviaimport './mobile-fix.css';.src/styles.csswith additional mobile viewport rules to keep a single-column layout and improved topbar/drawer styles on phones.vite.config.jsto setbuild.cssMinify: falseso classicmax-widthmedia queries are preserved during build..gitignorecontaining common ignores (node_modules/,dist/,.DS_Store,*.log)..github/workflows/deploy.ymland updatedpackage-lock.jsonto replace internal registry URLs with the publichttps://registry.npmjs.org/resolved URLs.Testing
Codex Task