From 649e0f345fefd27cecc3ec68713a1a1f66b7b53e Mon Sep 17 00:00:00 2001 From: Mitchell Date: Tue, 31 Dec 2019 15:25:39 -0600 Subject: [PATCH] fix(Upload History): change table layout to fixed --- client/app/pages/upload-history/upload-history.tsx | 2 +- client/app/scss/table.scss | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/client/app/pages/upload-history/upload-history.tsx b/client/app/pages/upload-history/upload-history.tsx index f3cac38..f128185 100644 --- a/client/app/pages/upload-history/upload-history.tsx +++ b/client/app/pages/upload-history/upload-history.tsx @@ -36,7 +36,7 @@ export class UploadHistory extends React.Component { return (
Upload History
- +
diff --git a/client/app/scss/table.scss b/client/app/scss/table.scss index 3068ab1..f17145f 100644 --- a/client/app/scss/table.scss +++ b/client/app/scss/table.scss @@ -8,6 +8,9 @@ th { padding: 10px 5px; } + &--fixed { + table-layout: fixed; + } } .table--ellipsis {
Date