Browse Source

fix: set tab height to 100vh on large screen (#1757)

fix #1756
Gerald 2 years ago
parent
commit
dc34cda2e5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/options/views/tab-installed.vue

+ 2 - 2
src/options/views/tab-installed.vue

@@ -704,7 +704,7 @@ export default {
   --columns-table: 1600, 2500, 3400; // 1680x1050, 2560x1440, 3440x1440
 }
 .tab.tab-installed {
-  max-height: 100vh;
+  height: 100vh;
   padding: 0;
   overflow: auto;
   header {
@@ -733,7 +733,7 @@ export default {
     }
   }
   @media (max-width: 767px) {
-    max-height: none;
+    height: auto;
     overflow: visible;
   }
 }