fix(docs-infra): set `th`/`td` to proper width (#35437)

Previously, the tables on the event page were misaligned. This commit
fixes this by setting the width of all `td`'s and `th`'s.

PR Close #35437
This commit is contained in:
Sonu Kapoor 2020-02-13 20:56:47 -05:00 committed by Alex Rickabaugh
parent 2f18e8565e
commit 183a8629a4
1 changed files with 6 additions and 0 deletions

View File

@ -113,3 +113,9 @@ table {
}
}
}
.events-container {
tr > td, tr > th {
width: 33%;
}
}