honestly last attempt at fixing bugged out interaction after clicking project on safari

This commit is contained in:
2025-07-31 19:22:51 +02:00
parent e7a5ef5b40
commit 2bf12deaf2
+13 -10
View File
@@ -15,18 +15,21 @@
html {
overflow-y: scroll;
scroll-behavior: smooth;
*:has(:popover-open) {
pointer-events: none;
touch-action: none;
[popover] {
pointer-events: auto;
touch-action: auto;
}
::backdrop {
pointer-events: all;
touch-action: manipulation;
@media (min-resolution: .001dpcm) {
*:has(:popover-open) {
pointer-events: none;
touch-action: none;
[popover] {
pointer-events: auto;
touch-action: auto;
}
::backdrop {
pointer-events: all;
touch-action: manipulation;
}
}
}
}
/* evil hack. this will run for all browsers but safari and similar */