docs - add table hover highlight and increase max width

This commit is contained in:
Cody Glassman 2025-06-17 16:31:18 -07:00
parent 49a651761f
commit 36941bf4e9

View File

@ -21,4 +21,16 @@ code {
/* Table headers are bolded in dark mode, do it in light mode too */
table th {
font-weight: 600 !important;
}
}
/* Highlight non-header rows on hover */
tbody tr:hover {
background-color: hsl(var(--muted));
}
/* Increase maximum width for docs, default is quite narrow at 1400px max */
@media (min-width: 1400px) {
.container {
max-width: 2000px !important;
}
}