Add viewport padding to dialogs on mobile

This commit is contained in:
Alexander Zaytsev
2026-01-20 10:40:04 +01:00
parent 3fa850da3d
commit aea90f4b50
+7
View File
@@ -35,4 +35,11 @@
}
}
}
/* Ensure padding from viewport edges on narrow screens */
@media (max-width: 639px) {
.dialog.panel {
max-inline-size: 94vw;
}
}
}