diff --git a/index.html b/index.html
index 5776ef7..2ac203d 100644
--- a/index.html
+++ b/index.html
@@ -193,6 +193,22 @@
top: 156px
}
+ #version {
+ position: fixed;
+ top: 95vh;
+ font-size: 75%;
+ background: #5c5c5c;
+ color: black;
+ opacity: 1;
+ padding: 10px;
+ padding-top: 5px;
+ padding-bottom: 0px;
+ border-radius: 8px;
+ }
+
+ #version:hover {
+ top: 90vh;
+ }
a:visited,
a:active,
@@ -272,8 +288,17 @@
Pear is in the system PATH and ready to go .
@@ -47,22 +40,11 @@ customElements.define('pear-welcome', class extends HTMLElement { -- - - ` this.root = this.attachShadow({ mode: 'open' }) this.root.appendChild(this.template.content.cloneNode(true)) } - - connectedCallback () { - versions().then(({ app, platform }) => { - this.root.querySelector('#platform-version').innerText = 'Pear version: ' + platform.key + '_' + platform.length - this.root.querySelector('#app-version').innerText = 'App version: ' + app.key + '_' + app.length - }) - } }) customElements.define('system-status', class extends HTMLElement {