Add some responsiveness...

This commit is contained in:
Nicolò P 2023-08-28 13:10:25 +02:00
parent 8c18e98906
commit 40e577436e
2 changed files with 6 additions and 3 deletions

View File

@ -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;
}
}

View File

@ -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;