Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion site/app/matrix/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default async function MatrixPage() {
<div className="min-h-screen bg-ctp-base flex flex-col">
<Header generatedAt={data.generated_at} commitSha={data.commit_sha} currentPage="matrix" />

<main className="max-w-screen-2xl mx-auto px-4 py-4 flex-1 w-full">
<main className="w-full flex-1">
<DetailedMatrix matrix={data} />
</main>

Expand Down
2 changes: 1 addition & 1 deletion site/src/components/ConformanceMatrix.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function DetailedMatrix({ matrix }: ConformanceMatrixProps) {
}

return (
<div className="rounded-lg border border-ctp-surface0 latte:border-ctp-surface1 overflow-auto bg-ctp-mantle latte:bg-ctp-base max-h-[calc(100vh-220px)]">
<div className="border-y border-ctp-surface0 latte:border-ctp-surface1 overflow-auto bg-ctp-mantle latte:bg-ctp-base max-h-[calc(100vh-220px)]">
<Table>
<TableHeader className="sticky top-0 z-20 bg-ctp-mantle latte:bg-ctp-base">
<TableRow className="border-ctp-surface0 latte:border-ctp-surface1 hover:bg-transparent">
Expand Down
Loading