Skip to content

Commit

Permalink
fix z-Index
Browse files Browse the repository at this point in the history
  • Loading branch information
Notplayingallday383 authored Aug 28, 2024
1 parent 28e41d8 commit cccc66a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions sodium-static/public/assets/js/proxhandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
uForm.action = "/service/route";
uForm.method = "POST";
uForm.id = "uform";
uForm.style.position = "relative"
uForm.style.zIndex = "99"
uForm.className = "flex-center";
const input = document.createElement("input");
input.title = "query";
Expand Down
2 changes: 1 addition & 1 deletion sodium-static/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h1>Sodium</h1>
<div class="flex-center desc">
<p>Sodium is a site used for evading internet censorship</p>
</div>
<form id="uv-form" class="flex-center">
<form id="uv-form" style="z-index: 99; position: relative;" class="flex-center">
<input id="uv-search-engine" value="https://www.google.com/search?q=%s" type="hidden" />
<input id="uv-address" type="text" placeholder="Search the web freely" />
</form>
Expand Down
2 changes: 1 addition & 1 deletion sodium-static/public/newtab.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h1>Sodium</h1>
<div class="flex-center desc">
<p>Sodium is a site used for evading internet censorship</p>
</div>
<form id="uv-form" class="flex-center">
<form id="uv-form" style="z-index: 99; position: relative;" class="flex-center">
<input id="uv-search-engine" value="https://www.google.com/search?q=%s" type="hidden" />
<input id="uv-address" type="text" placeholder="Search the web freely" />
</form>
Expand Down

0 comments on commit cccc66a

Please sign in to comment.