Skip to content

Commit

Permalink
Update main.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Blobby-Boi authored May 31, 2024
1 parent 134c5e3 commit e8aac53
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions main.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlobeBM</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<style>
/* Import the Varela Round font */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
Expand Down Expand Up @@ -47,14 +46,14 @@
align-items: center;
}

newItemInput {
width: calc(100% + 590px); /* Adjust the width here */
padding: 5px; /* Add some padding for better appearance */
border-radius: 5px; /* Rounded edges with a radius of 5px */
margin-left: -600px; /* Move 300px to the left */
}
#newItemInput {
width: calc(100% + 590px); /* Adjust the width here */
padding: 5px; /* Add some padding for better appearance */
border-radius: 5px; /* Rounded edges with a radius of 5px */
margin-left: -600px; /* Move 300px to the left */
}

@media (max-width: 769px) {
@media (max-width: 769px) {
#newItemInput {
width: auto; /* Reset width for larger screen sizes */
margin-left: 0; /* Reset margin for larger screen sizes */
Expand Down Expand Up @@ -182,7 +181,7 @@
itemButton.title = itemValue;
itemButton.addEventListener('click', () => {
const selectedItemValue = itemButton.title;
runScript(decodeURIComponent(selectedItemValue));
eval(selectedItemValue);
});

const removeButton = document.createElement('button');
Expand Down

0 comments on commit e8aac53

Please sign in to comment.