Skip to content

Commit

Permalink
Fixes Popup Size, Discord URL in Readme (#242)
Browse files Browse the repository at this point in the history
* Issue #221, #230 - Remove commented code, Discord URL update.

* Update issue templates

* Updated Discord URL

* Removed commented code from line 25 to line 111

---------

Co-authored-by: Vishal Lokare <31512838+vishal-lokare@users.noreply.github.com>

* Fix popup size (#237)

* Update issue templates

* Fix popup size

* Fix nav link

---------

Co-authored-by: Vishal Lokare <31512838+vishal-lokare@users.noreply.github.com>

---------

Co-authored-by: GUNJ JOSHI <gunjjoshi8372@gmail.com>
Co-authored-by: NotAProton <akshat23bcy48@iiitkottayam.ac.in>
  • Loading branch information
3 people authored Oct 14, 2023
1 parent b017af8 commit 18aa55d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/js/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
<header>
<nav>
<div class="navbar">
<a class="nav-item" id="nav_logo" href="">
<a class="nav-item" id="nav_logo" href="https://autojoomer-21321.web.app/">

<img src="/src/images/logo.png" alt="logo">
</a>
Expand Down
6 changes: 0 additions & 6 deletions src/pages/login/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,7 @@ let firstChange = 0;
year.disabled = true;
branch.disabled = true;
batch.disabled = true;
let logo = document.getElementById("nav_logo");

logo.addEventListener("click", open_autojoomer);

function open_autojoomer() {
window.open("https://www.autojoomer.co/", (target = "_blank"));
}

for(let i = 0; i < elements.length; i++) {
elements[i].addEventListener("keyup", () => {
Expand Down
10 changes: 5 additions & 5 deletions src/pages/login/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
rgba(0, 207, 255, 1)
);
}

body {
background: var(--bg-gradient);
font-family: var(--font-family);
height: 100vh;
width: 100%;
display: flex;
height: fit-content;
width: fit-content;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 20px 0;
padding: 20px;
}

.form-container {
padding: 14px;
display: flex;
Expand Down

0 comments on commit 18aa55d

Please sign in to comment.