We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 044d215 commit 2adf44cCopy full SHA for 2adf44c
mystbin/frontend/components/EditorTabs.tsx
@@ -89,6 +89,10 @@ export default function EditorTabs({
89
async function handleDnD(e, index) {
90
e.preventDefault()
91
92
+ if (!!id) {
93
+ return;
94
+ }
95
+
96
if(e.dataTransfer && e.dataTransfer.files.length != 0) {
97
let file = e.dataTransfer.files[0]
98
mystbin/frontend/styles/globals.css
@@ -216,7 +216,7 @@ input[type=radio] {
216
217
/* Handle */
218
.dropdown::-webkit-scrollbar-thumb {
219
- background: #0070f3;
+ background: #2b2b2b;
220
}
221
222
::-webkit-scrollbar {
0 commit comments