This commit is contained in:
NodeMixaholic 2023-03-09 01:15:50 -06:00 committed by GitHub
parent 93590a206c
commit c72a9072eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@
<body>
<input id="txtUrl" style="width:72%;" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" />
<button onclick="go(); return false;" id="goBtn"></button> <button onclick="back(); return false;" id="backBtn">⬅️</button> <button onclick="forward(); return false;" id="forwardBtn">➡️</button>
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh;user-select: none;" disablewebsecurity></webview></tab-group>
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh" disablewebsecurity></webview></tab-group>
<script src="node_modules/electron-tabs/dist/electron-tabs.js"></script>
<script type="text/javascript" src="./extension/extensionList.js"></script>
<script type="text/javascript" src="./config.js"></script>

View file

@ -10,8 +10,7 @@
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 3rem;
user-select: none;
font-size: 1.25rem;
}
#backBtn {
@ -22,8 +21,7 @@
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 3rem;
user-select: none;
font-size: 1.25rem;
}
#forwardBtn {
@ -34,8 +32,7 @@
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 3rem;
user-select: none;
font-size: 1.25rem;
}
#txtUrl {
@ -44,6 +41,9 @@
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 3rem;
font-size: 1.25rem;
}
body {
user-select: none;
}