Fix DeveloperMenu z-index (#578)

The button unification PR accidentally raised the button bar above the developer menu.
Adjusting the z-index fixes this.
diff --git a/resources/main.css b/resources/main.css
index bd590c3..a571bd6 100644
--- a/resources/main.css
+++ b/resources/main.css
@@ -235,6 +235,7 @@
     background: #602525;
     border: 3px solid rgba(255, 255, 255, 0.5);
     position: fixed;
+    z-index: 9999;
     left: 10px;
     top: 10px;
     max-height: calc(100vh - 20px);