Skip to content

Commit

Permalink
minor fix put style code inside brackets
Browse files Browse the repository at this point in the history
d2024-03-06 t20:40
  • Loading branch information
ewingson authored Mar 6, 2024
1 parent dd2745a commit c24c9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/js/index-buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ document.addEventListener('DOMContentLoaded', async function() {
// HIDE LOGIN BUTTON, ADD REGISTER BUTTON
else {
let loginArea = document.getElementById('loginStatusArea');
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;"`
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;"`>
let span = document.createElement("span")
span.innerHTML = html
loginArea.appendChild(span);
Expand Down

0 comments on commit c24c9b5

Please sign in to comment.