From 954ad881108a192029dd47c9225757a1310e93ac Mon Sep 17 00:00:00 2001
From: ferngon <fernando.gonzalez.sanz@alumnos.uva.es>
Date: Thu, 12 Dec 2024 20:12:23 +0000
Subject: [PATCH] Update 3 files

- /main.css
- /xg.js
- /xg2.js
---
 main.css | 2 +-
 xg.js    | 2 +-
 xg2.js   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/main.css b/main.css
index 3bf62c6..7a362dc 100644
--- a/main.css
+++ b/main.css
@@ -4,7 +4,7 @@ body {
     padding: 0;
     background-color: #f0f0f0; /* Fondo gris claro */
     overflow-y: auto;
-    max-height: 80vh;
+    max-height: 100vh;
 }
 .tabs {
     display: flex;
diff --git a/xg.js b/xg.js
index da4a198..93e2a6c 100644
--- a/xg.js
+++ b/xg.js
@@ -4,7 +4,7 @@
     
     let margin = {top: 20, right: 30, bottom: 50, left: 150}; // Ajustamos los márgenes para espacio en el eje Y
     let width = 800 - margin.left - margin.right;
-    let height = 370 - margin.top - margin.bottom;
+    let height = 400 - margin.top - margin.bottom;
     
     let x = d3.scaleLinear().range([0, width]);
     let y = d3.scaleBand().range([0, height]).padding(0.1);
diff --git a/xg2.js b/xg2.js
index e87afdd..e090865 100644
--- a/xg2.js
+++ b/xg2.js
@@ -3,7 +3,7 @@
     
     let margin = {top: 20, right: 30, bottom: 50, left: 150}; // Ajustamos los márgenes para espacio en el eje Y
     let width = 800 - margin.left - margin.right;
-    let height = 370 - margin.top - margin.bottom;
+    let height = 400 - margin.top - margin.bottom;
     
     let x = d3.scaleLinear().range([0, width]);
     let y = d3.scaleBand().range([0, height]).padding(0.1);
-- 
GitLab