We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81097b3 commit a492cc0Copy full SHA for a492cc0
src/web/css/editor.css
@@ -2297,6 +2297,9 @@ table.pyret-table.pyret-matrix {
2297
table.pyret-table thead {
2298
box-shadow: 0px 2px 2px var(--shadow-color);
2299
}
2300
+/* Force tables to be the full height of the viewport, leaving 250px for other chrome */
2301
+table.pyret-table tbody { max-height: calc(100vh - 250px); display: block; overflow: scroll; }
2302
+table.pyret-table tr { table-layout: fixed; display: table; width: 100%; }
2303
table.pyret-row th {
2304
box-shadow: 2px 0px 2px var(--shadow-color), -2px 0px 2px var(--shadow-color);
2305
border: none;
0 commit comments