logut
Some checks failed
Deploy / deploy-staging (push) Failing after 48s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-09 00:37:25 +02:00
parent dc2fbbc496
commit a90fd62c8c
13 changed files with 488 additions and 2 deletions

View File

@@ -691,6 +691,24 @@ h1 {
font-size: 13px;
}
.tray-action {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
color: inherit;
font-size: 13px;
text-decoration: none;
transition: background-color 140ms ease, transform 140ms ease;
}
.tray-action:hover {
background: rgba(255, 255, 255, 0.16);
transform: translateY(-1px);
}
.window-content p:last-child {
margin-bottom: 0;
}

View File

@@ -46,7 +46,7 @@ if (payloadNode) {
};
const updateSessionDisplay = () => {
const accountNode = document.querySelector('.tray-pill:last-of-type');
const accountNode = document.querySelector('.tray-pill[data-tray-id="account"]');
if (!accountNode) {
return;