Skip to content

Commit

Permalink
contextScript: fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
inciner8r committed Mar 26, 2023
1 parent f12843e commit c2fd3b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/content_scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const on_load = () => {
}
const passwords = res;
const list_str = passwords
.map((e) => `<p class="usernames" style="margin:-4px;" id="${e.password}"> ${e.username} </p>`)
.map((e) => `<div class="usernames" style="padding:12px 8px; border:1px solid black;" id="${e.password}"> ${e.username} </div>`)
.join(" ");

const drop_down_element = document.createElement("div");
Expand All @@ -138,7 +138,6 @@ const on_load = () => {
position:fixed;
top:10%;
left:4%;
padding:16px;
cursor:pointer;
color:black;
background-color: #eeeeee;
Expand Down

0 comments on commit c2fd3b2

Please sign in to comment.