diff --git a/res/browser_api_test.html b/res/browser_api_test.html deleted file mode 100644 index fbb3d85..0000000 --- a/res/browser_api_test.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - OBS Browser API Check - - - -

OBS Browser Source – Missing API Report

-

-
-        
-    
-
diff --git a/src/css/index.css b/src/css/index.css
index e445bd3..a64d8c8 100644
--- a/src/css/index.css
+++ b/src/css/index.css
@@ -5,6 +5,7 @@
 
 :root {
     --window-frame-height: 36px;
+    --window-control-size: 28px;
 }
 
 p {
@@ -64,15 +65,17 @@ body {
 }
 
 .window-control {
-    width: 30px;
-    height: 24px;
+    width: var(--window-control-size);
+    height: var(--window-control-size);
     padding: 0;
     border-radius: 6px;
     background: rgba(148, 163, 184, 0.2);
     border: 1px solid rgba(148, 163, 184, 0.25);
     color: #e2e8f0;
-    font-size: 16px;
+    font-size: 14px;
     line-height: 1;
+    display: grid;
+    place-items: center;
     box-shadow: none;
 }
 
diff --git a/src/index.html b/src/index.html
index 3f48019..a915866 100644
--- a/src/index.html
+++ b/src/index.html
@@ -12,6 +12,9 @@
                 
+