diff options
author | 0neGal <mail@0negal.com> | 2022-01-20 13:45:57 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-20 13:45:57 +0100 |
commit | fd967f570985339905c52238ead049555c5efcdc (patch) | |
tree | 9a4d1c0bf1ab7f3e32ecfa4c5416d190933a243f /src/app/index.html | |
parent | 20bf62f42f41638733e0b02affe90c04b1cb2938 (diff) | |
download | Viper-fd967f570985339905c52238ead049555c5efcdc.tar.gz Viper-fd967f570985339905c52238ead049555c5efcdc.zip |
added fallback icon, and ways to close the browser
You can either click "Escape" or simply click on the darkened background
and it'll then close it. Ideally the fallback icon should never be
shown, and it is more for testing.
I also added a search bar that does nothing currently.
Diffstat (limited to 'src/app/index.html')
-rw-r--r-- | src/app/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/index.html b/src/app/index.html index 424265e..0866816 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -13,7 +13,10 @@ <div id="close" onclick="ipcRenderer.send('exit')"></div> </div> - <div id="browser"></div> + <div id="overlay" onclick="Browser()"></div> + <div id="browser"> + <input id="search" placeholder="Search..."> + </div> <nav class="gamesContainer"> <button id="vpBtn" onclick="page(0)"></button> |