Skip to content

Commit afa380f

Browse files
committed
Version 4.0.5 - Fix online status indicator overlap
- Fixed peer status dot positioning to overlap outside circular avatar - Increased status dot size from 10px to 12px for better visibility - Adjusted positioning to -2px bottom/right for proper overlap
1 parent c815381 commit afa380f

3 files changed

Lines changed: 22 additions & 10 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "poly-hub",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"description": "P2P file sharing between trusted users over Tailscale",
55
"main": "src/main/main.js",
66
"scripts": {

src/renderer/pages/Settings.css

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,21 @@
364364
}
365365

366366
@keyframes fadeInOut {
367-
0% { opacity: 0; }
368-
20% { opacity: 1; }
369-
80% { opacity: 1; }
370-
100% { opacity: 0; }
367+
0% {
368+
opacity: 0;
369+
}
370+
371+
20% {
372+
opacity: 1;
373+
}
374+
375+
80% {
376+
opacity: 1;
377+
}
378+
379+
100% {
380+
opacity: 0;
381+
}
371382
}
372383

373384
.autosave-indicator svg {
@@ -672,11 +683,12 @@
672683

673684
.peer-avatar .peer-status-dot {
674685
position: absolute;
675-
bottom: 0;
676-
right: 0;
677-
width: 10px;
678-
height: 10px;
686+
bottom: -2px;
687+
right: -2px;
688+
width: 12px;
689+
height: 12px;
679690
border: 2px solid var(--color-surface);
691+
border-radius: 50%;
680692
}
681693

682694
.peer-status-indicator {

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.0.4",
2+
"version": "4.0.5",
33
"buildDate": "2026-02-05",
44
"name": "Poly-Hub"
55
}

0 commit comments

Comments
 (0)