From 183a8629a4c759669904bfc27d8a24c93d7e289f Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Thu, 13 Feb 2020 20:56:47 -0500 Subject: [PATCH] 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 --- aio/src/styles/2-modules/_table.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aio/src/styles/2-modules/_table.scss b/aio/src/styles/2-modules/_table.scss index 147e06ed03..24b6feb965 100644 --- a/aio/src/styles/2-modules/_table.scss +++ b/aio/src/styles/2-modules/_table.scss @@ -113,3 +113,9 @@ table { } } } + +.events-container { + tr > td, tr > th { + width: 33%; + } +}