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
15 changes: 15 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,18 @@
background-color: #ffffff;
}
}


.md-typeset__scrollwrap table {
width: 100%;
table-layout: fixed;
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

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

There are trailing spaces after the semicolon on this line, which are unnecessary and may be flagged by linters or future formatters. Please remove the extra whitespace to keep the CSS formatting consistent with the rest of the file.

Suggested change
table-layout: fixed;
table-layout: fixed;

Copilot uses AI. Check for mistakes.
}

/* Force wrapping in long text */
.md-typeset__scrollwrap td,
.md-typeset__scrollwrap th {
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
}