Skip to content

Commit 969f362

Browse files
authored
Merge pull request modelcontextprotocol#1011 from modelcontextprotocol/ihrpr/fix-client-page
fix client table - no scrolling
2 parents fb9252f + 326a046 commit 969f362

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

docs/style.css

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,28 @@
1010
}
1111
}
1212

13-
#feature-support-matrix-wrapper {
14-
overflow-x: auto;
13+
#feature-support-matrix-wrapper table {
14+
width: 100%;
15+
table-layout: fixed;
16+
font-size: 0.75rem;
1517
}
1618

17-
#feature-support-matrix-wrapper table {
18-
min-width: 800px;
19+
#feature-support-matrix-wrapper td,
20+
#feature-support-matrix-wrapper th {
21+
padding: 0.25rem;
22+
text-align: center;
23+
}
24+
25+
/* Left align Client column */
26+
#feature-support-matrix-wrapper td:first-child,
27+
#feature-support-matrix-wrapper th:first-child {
28+
text-align: left;
29+
}
30+
31+
/* Wrap text in Notes column */
32+
#feature-support-matrix-wrapper td:last-child {
33+
text-align: left;
34+
white-space: normal;
1935
}
2036

2137

0 commit comments

Comments
 (0)