Merge branch 'master' into save

This commit is contained in:
Christian Semmler 2026-01-30 15:12:52 -08:00
commit 5bfe237d7b
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C
2 changed files with 21 additions and 2 deletions

View File

@ -600,6 +600,10 @@ body {
overflow: hidden; overflow: hidden;
} }
.config-card-content.open > div {
overflow: visible;
}
/* Toggle switches */ /* Toggle switches */
.toggle-group { .toggle-group {
display: flex; display: flex;
@ -764,6 +768,15 @@ body {
user-select: none; user-select: none;
} }
/* Expand touch target for mobile devices */
@media (pointer: coarse) {
.tooltip-trigger::before {
content: '';
position: absolute;
inset: -12px;
}
}
.tooltip-content { .tooltip-content {
position: absolute; position: absolute;
bottom: 140%; bottom: 140%;

View File

@ -17,8 +17,14 @@ export function playInstallAudio() {
const audio = getInstallAudio(); const audio = getInstallAudio();
if (audio) { if (audio) {
audio.currentTime = 0; audio.currentTime = 0;
audio.play(); audio.load();
soundEnabled.set(true); audio.play()
.then(() => {
soundEnabled.set(true);
})
.catch(() => {
soundEnabled.set(false);
});
} }
} }