From ea8d80ae13d39da525aefef2d2c33558de4d0493 Mon Sep 17 00:00:00 2001
From: Liliana Sanfilippo <lsanfilippo@techfak.uni-bielefeld.de>
Date: Thu, 14 Nov 2024 17:16:34 +0100
Subject: [PATCH] fixed timeline overflow

---
 src/App/Timelines.css | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/App/Timelines.css b/src/App/Timelines.css
index ef83bcd2..cfcd4b11 100644
--- a/src/App/Timelines.css
+++ b/src/App/Timelines.css
@@ -7,10 +7,11 @@
   white-space: nowrap;
   min-height: 700px;
   width: 75vw; 
-  overflow-x: auto;
-  overflow-y: hidden;
+  overflow-x: hidden !important;
+  max-width: inherit !important;
+  overflow-y: hidden !important;
+  width: 100%;
   background-color: inherit; 
-  font-size: 1rem; 
   /* align items center */
   align-items: center !important;
   /* row */
-- 
GitLab