Skip to content

Commit 60ef3aa

Browse files
authored
Merge pull request #1763 from ewingson/main
improve consistency of the look and feel of the two buttons
2 parents 21096e2 + 5a55d38 commit 60ef3aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/js/index-buttons.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ document.addEventListener('DOMContentLoaded', async function() {
3030
// HIDE LOGIN BUTTON, ADD REGISTER BUTTON
3131
else {
3232
let loginArea = document.getElementById('loginStatusArea');
33-
let html = `<input type="button" onclick="window.location.href='/register'" value="Register to get a Pod" class="register-button">`
33+
let html = `<input type="button" onclick="window.location.href='/register'" value="Register to get a Pod" class="register-button" style="padding: 1em; border-radius:0.2em; font-size: 100%;margin: 0.75em 0 0.75em 0.5em !important; padding: 0.5em !important;background-color: #efe;">`
3434
let span = document.createElement("span")
3535
span.innerHTML = html
3636
loginArea.appendChild(span);
@@ -41,4 +41,4 @@ document.addEventListener('DOMContentLoaded', async function() {
4141
signUpButton.style.display = "none";
4242
}
4343
}
44-
})
44+
})

0 commit comments

Comments
 (0)