From 299b0874c8b81ce0582e5f1a5ba296c074a3aeaa Mon Sep 17 00:00:00 2001 From: pepper Date: Thu, 21 Jan 2021 01:26:00 -0500 Subject: [PATCH] attempt to remove scroll bar on ReactTables --- public/main.css | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/public/main.css b/public/main.css index 47fc9cb..2473868 100644 --- a/public/main.css +++ b/public/main.css @@ -1,16 +1,20 @@ a.white-link:link { - color: azure; - font-size: large; + color: azure; + font-size: large; } a.white-link:hover { - color: azure; - font-size: large; + color: azure; + font-size: large; } a.white-link:visited { - color: azure; - font-size: large; + color: azure; + font-size: large; } a.white-link:active { - color: azure; - font-size: large; -} \ No newline at end of file + color: azure; + font-size: large; +} + +.react-bootstrap-table { + overflow-x: auto !important; +}