Skip to content

Commit

Permalink
Fix website column widths on Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
oclero committed Jan 11, 2024
1 parent c4d7d1c commit 9aa220b
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions docs/assets/css/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,21 @@ table {
td:nth-child(1),
th:nth-child(1) {
text-align: center;
min-width: 70px;
max-width: 70px;
width: max-content;
width: 70px;
}

// Name.
td:nth-child(2),
th:nth-child(2) {
text-align: left;
width: max-content;
min-width: 220px;
width: 220px;
}

// Freedesktop name.
td:nth-child(3),
th:nth-child(3) {
text-align: left;
width: max-content;
min-width: 160px;
width: 160px;
}

// Tags.
Expand Down

0 comments on commit 9aa220b

Please sign in to comment.