diff --git a/public/index.html b/public/index.html
index 32a6592..c3190f6 100644
--- a/public/index.html
+++ b/public/index.html
@@ -86,7 +86,10 @@
- You can be discovered by everyone on this network and by paired devices
+
+ You can be discovered by everyone on this network
+ and by paired devices
+
diff --git a/public/scripts/ui.js b/public/scripts/ui.js
index 9a0f0b9..75b1b77 100644
--- a/public/scripts/ui.js
+++ b/public/scripts/ui.js
@@ -1569,15 +1569,20 @@ Events.on('load', () => {
style.top = 0;
style.left = 0;
let ctx = c.getContext('2d');
- let x0, y0, w, h, dw;
+ let x0, y0, w, h, dw, offset;
function init() {
w = window.innerWidth;
h = window.innerHeight;
c.width = w;
c.height = h;
- let offset = h > 380 ? 100 : 65;
- offset = h > 800 ? 116 : offset;
+ offset = h > 800
+ ? 116
+ : h > 380
+ ? 100
+ : 65;
+
+ if (w < 420) offset += 20;
x0 = w / 2;
y0 = h - offset;
dw = Math.max(w, h, 1000) / 13;
diff --git a/public/styles.css b/public/styles.css
index 98b0cdf..a85806b 100644
--- a/public/styles.css
+++ b/public/styles.css
@@ -381,6 +381,7 @@ footer .logo {
footer .font-body2 {
color: var(--primary-color);
text-underline-position: under;
+ margin: auto 18px;
}
#on-this-network {