Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1615,8 +1615,8 @@ main,
}
}

/* Tablet-specific fixes (iPad Pro 11 at 834px) — header hamburger */
@media (min-width: 769px) and (max-width: 900px) {
/* Tablet-specific fixes (iPad at 768px, iPad Pro 11 at 834px) — header hamburger */
@media (min-width: 768px) and (max-width: 900px) {
Comment on lines +1618 to +1619
Copy link

Copilot AI Apr 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new tablet media query starts at 768px, which means at exactly 768px it overlaps with the existing @media (max-width: 768px) rules in this file (media queries are inclusive). If the intent is for 768px to behave strictly as “tablet” (not both mobile+tablet), consider adjusting one side of the breakpoint (e.g., make the mobile max-width < 768px or start tablet at > 768px) to avoid double-applying potentially conflicting styles.

Suggested change
/* Tablet-specific fixes (iPad at 768px, iPad Pro 11 at 834px) — header hamburger */
@media (min-width: 768px) and (max-width: 900px) {
/* Tablet-specific fixes (769px to 900px, including iPad Pro 11 at 834px) — header hamburger */
@media (min-width: 769px) and (max-width: 900px) {

Copilot uses AI. Check for mistakes.
/* Hide full nav to prevent overflow; hamburger replaces it */
.custom-header-links {
display: none !important;
Expand Down
Loading