Skip to content

Commit 2fa82d7

Browse files
committed
fix: interface unusable becasue no interaction was possible
1 parent 1417d35 commit 2fa82d7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

app.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div>
2+
<div style="pointer-events: auto;">
33
<NuxtPage />
44
</div>
55
</template>
@@ -59,18 +59,21 @@ onMounted(async () => {
5959
scroll-behavior: smooth;
6060
scrollbar-width: thin;
6161
user-select: none;
62+
position: relative;
63+
z-index: 1;
6264
6365
--os-handle-bg: #ADA9A1;
6466
--os-handle-bg-hover: #78756F;
6567
--os-handle-bg-active: #78756F;
6668
}
6769
6870
html,
69-
body,
70-
#__nuxt {
71+
body {
7172
background-color: transparent;
7273
width: 750px;
7374
height: 474px;
75+
user-select: none !important;
76+
pointer-events: none !important;
7477
}
7578
7679
.os-scrollbar-horizontal {

components/Noise.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
height: 100vh;
1313
pointer-events: none;
1414
user-select: none;
15-
z-index: 0;
15+
z-index: -1;
1616
background-image: url('/noise.png');
1717
background-repeat: repeat;
1818
image-rendering: pixelated;

0 commit comments

Comments
 (0)