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: 4 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -427,3 +427,7 @@ h6 span img {
display: inline-block !important; /* Ensure images behave as inline-block */
}

/* Hide pagination */
#pagination {
display: none;
}
Comment on lines +431 to +433

Copilot AI Oct 14, 2025

Copy link

Choose a reason for hiding this comment

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

The CSS selector #pagination is very generic and could potentially hide unintended elements. Consider using a more specific selector like .mintlify-pagination or [data-pagination] to target only the intended pagination component.

Suggested change
#pagination {
display: none;
}
.mintlify-pagination {
display: none;
}

Copilot uses AI. Check for mistakes.
Comment on lines +430 to +433

Copilot AI Oct 14, 2025

Copy link

Choose a reason for hiding this comment

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

Hiding pagination with display: none removes it from screen readers entirely. If this is intentional for all users, consider if the pagination should be removed from the HTML instead. If it should remain accessible to screen readers, use visibility: hidden or visually hide it while keeping it accessible.

Suggested change
/* Hide pagination */
#pagination {
display: none;
}
/* Visually hide pagination but keep it accessible to screen readers */
#pagination {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}

Copilot uses AI. Check for mistakes.