Skip to content

Commit

Permalink
Revert "tools: update the style.css for fast.vlang.io pages, so that …
Browse files Browse the repository at this point in the history
…the rownumber counter is reversed" (Chrome does not support counting in reverse)

This reverts commit 2765ca4.
  • Loading branch information
spytheman committed Jan 8, 2024
1 parent 2765ca4 commit 89f06d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/tools/fast/fast_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ table td:nth-child(3) {
}

table {
counter-reset: reversed(rowNumber);
counter-reset: rowNumber -1;
}
table tr {
counter-increment: rowNumber -1;
counter-increment: rowNumber;
}
table tr td:first-child::after {
position: absolute;
Expand Down

0 comments on commit 89f06d3

Please sign in to comment.