From 8fbe9c33d72d3332e56b82a23e2f820defbc7bf2 Mon Sep 17 00:00:00 2001 From: Nic Winn Date: Wed, 31 Jan 2018 13:14:23 -0600 Subject: [PATCH] Remove calculated width for scrollable tables width: auto on a table ready for scroll reverts the default where browsers calculate a width. This overrides a stylesheet declaring table width:100%. A table that needs scrolling somewhere between the medium and large breakpoints will collapse because the column width is set by the widest unbreakable content in the cells. --- scss/components/_table.scss | 3 --- 1 file changed, 3 deletions(-) diff --git a/scss/components/_table.scss b/scss/components/_table.scss index fc967df3d..44f92ed58 100644 --- a/scss/components/_table.scss +++ b/scss/components/_table.scss @@ -323,8 +323,5 @@ $table-stack-breakpoint: medium !default; .table-scroll { overflow-x: auto; - table { - width: auto; - } } } -- 2.47.2