From 3dd5521a16845ef7b6a9f39be0c85132c8bd248e Mon Sep 17 00:00:00 2001
From: cadihowley <cadihowley@gmail.com>
Date: Thu, 5 Nov 2020 11:42:35 +1300
Subject: [PATCH] DOCS: adds custom css to change table display

---
 doc/docportal/_static/custom.css | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/doc/docportal/_static/custom.css b/doc/docportal/_static/custom.css
index 06345495f93..f2995fe7d69 100644
--- a/doc/docportal/_static/custom.css
+++ b/doc/docportal/_static/custom.css
@@ -1,14 +1,22 @@
 /* override table width restrictions */
-@media screen and (min-width: 1080px) {
 
+@media (min-width: 385px){
     .wy-table-responsive table td {
        /* !important prevents the common CSS stylesheets from overriding
           this as on RTD they are loaded after this stylesheet */
        white-space: normal !important;
+        
     }
  
     .wy-table-responsive {
        overflow: visible !important;
+      
     }
- }
- 
\ No newline at end of file
+    .wy-table-responsive table {
+
+      table-layout: fixed !important;
+      width: 100% !important;
+
+    }
+   }
+