From 27a916e609b569ffb14846a8b81f62e8af738fd0 Mon Sep 17 00:00:00 2001 From: Konstantinos Triantafyllou Date: Mon, 12 Apr 2021 14:10:46 +0000 Subject: [PATCH] [Monitor Dashboard | Trunk]: Methodology: fix cells width for all screens git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-monitor-portal/trunk/monitor_dashboard@60839 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/methodology/methodology.component.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/methodology/methodology.component.css b/src/app/methodology/methodology.component.css index 90f82d1..dff162b 100644 --- a/src/app/methodology/methodology.component.css +++ b/src/app/methodology/methodology.component.css @@ -1,6 +1,13 @@ table { font-size: 14px; background-color: #FFFFFF; + width:100%; + table-layout: fixed; + overflow-wrap: break-word; +} + +table th { + width: 25%; } table th, table td { @@ -36,6 +43,10 @@ ul.portal-circle li:before { } @media only screen and (max-width: 959px) { + table th { + width: 50%; + } + ul.portal-circle { padding-left: 20px; }