-
Notifications
You must be signed in to change notification settings - Fork 3
Fix narrow mobile header overflow #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| import { readFile } from "node:fs/promises"; | ||
| import { expect, test } from "@playwright/test"; | ||
|
|
||
| for (const project of ["desktop", "mobile"]) { | ||
| for (const project of ["desktop", "mobile", "mobile-narrow"]) { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Assert the narrow-header visibility contract. At the 🤖 Prompt for AI Agents |
||
| test(`${project} renders the generated workbook`, async ({ page }, testInfo) => { | ||
| test.skip(testInfo.project.name !== project); | ||
| await page.goto("/"); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: mini-software/MiniExcel-Rust
Length of output: 1952
🤖 get_repo_knowledge executed:
get_repo_knowledge mini-software/MiniExcel-Rust /tmp/coderabbit-repo-knowledge/mini-software-miniexcel-rust-326c8294/conventionsLength of output: 7183
Use a strict below-360px breakpoint if 360px must remain visible.
@media (max-width: 360px)matches exactly360px, so.runtime-badgeis hidden at that width. If the intended behavior is only below360px, use a media query that expresseswidth < 360px. Otherwise, state that360pxis included.🤖 Prompt for AI Agents