From 40e577436e6e11e01ef31a58d728270dc37373fa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nicol=C3=B2=20P?= <nicolo.paraciani@cnr.it>
Date: Mon, 28 Aug 2023 13:10:25 +0200
Subject: [PATCH] Add some responsiveness...

---
 css/qrihs.css | 7 ++++++-
 js/index.js   | 2 --
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/css/qrihs.css b/css/qrihs.css
index 9d5804b..17ea3ad 100644
--- a/css/qrihs.css
+++ b/css/qrihs.css
@@ -20,7 +20,12 @@ footer {
 .main {
     margin-top: 4rem;
     margin-bottom: 4rem;
-    width: 65vw;
     margin-left: auto;
     margin-right: auto;
+    width: 85vw;
+}
+@media (min-width: 1280px) {
+    .main {
+        width: 65vw;
+    }
 }
\ No newline at end of file
diff --git a/js/index.js b/js/index.js
index 14fdc89..305746e 100644
--- a/js/index.js
+++ b/js/index.js
@@ -1,8 +1,6 @@
 document.addEventListener('DOMContentLoaded', () => {
     const download = document.querySelector('#download');
 
-    console.log('I\'m outside clickers');
-
     document.querySelector('#gen').addEventListener('click', () => {
         let link = document.querySelector('input[name="link"]').value;
         let idInstr =document.querySelector('input[name="id-str"]').value;