Improve table height for MyGames too
authorBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 23:14:53 +0000 (00:14 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Thu, 20 Feb 2020 23:14:53 +0000 (00:14 +0100)
client/src/components/GameList.vue
client/src/views/MyGames.vue

index f85c49f..6bf0e9a 100644 (file)
@@ -1,6 +1,6 @@
 <template lang="pug">
 div
-  table
+  table.game-list
     thead
       tr
         th {{ st.tr["Variant"] }}
index 22f804d..41cced5 100644 (file)
@@ -74,10 +74,13 @@ export default {
 };
 </script>
 
-<style lang="sass" scoped>
+<style lang="sass">
 .active
   color: #42a983
 
 .tabbtn
   background-color: #f9faee
+
+table.game-list
+  max-height: 100%
 </style>