Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Commit

Permalink
prettify the generatd style tag
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Jun 28, 2021
1 parent ddcb4a0 commit 5401f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/pagestyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function setRGHFSavedStyles() {
// Generating style sheet based on saved extension settings
const status = savedState[key];
if (!status) {
extStyle.textContent = extStyle.innerText + CSSStyles[key] + '\n\n';
extStyle.textContent = `\n` + extStyle.innerText + CSSStyles[key] + '\n';
}
});
document.getElementsByTagName("head")[0].appendChild(extStyle);
Expand Down

0 comments on commit 5401f18

Please sign in to comment.