Fix: Mobile-Audit — Notifications Delete-Button, Health-Grid, Settings-Padding

This commit is contained in:
rene 2026-04-18 00:03:39 +02:00
parent bf57b69e36
commit bf268e3ffd
5 changed files with 13 additions and 5 deletions

View file

@ -217,10 +217,18 @@ window.Page_notifications = (() => {
color: var(--c-text-muted);
opacity: 0;
transition: opacity var(--transition-fast);
min-width: 44px;
min-height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.notif-item:hover .notif-del-btn {
opacity: 1;
}
@media (hover: none) {
.notif-del-btn { opacity: 1; }
}
`;
document.head.appendChild(style);
}