From acb4b0c7b90475c38e5f98c5a453417c439278d7 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Wed, 3 Oct 2018 13:58:40 -0400 Subject: [PATCH] fixed table styles --- styles/elements/_tables.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/styles/elements/_tables.scss b/styles/elements/_tables.scss index ee16d1c3..a16b93b3 100644 --- a/styles/elements/_tables.scss +++ b/styles/elements/_tables.scss @@ -96,3 +96,16 @@ } } } + +.fixed-table-wrapper { + width: 100%; + + table { + max-width: 100%; + table-layout:fixed; + + th, td { + white-space: normal; + } + } +}