Browse Source

fix style

Michael Wang 4 years ago
parent
commit
61096e00f8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/features/mark/MarkBoardTrack.vue

+ 2 - 1
src/features/mark/MarkBoardTrack.vue

@@ -85,7 +85,6 @@
           <div
             @click="chooseQuestion(question)"
             class="question tw-rounded tw-p-1"
-            style="height: 70px"
             :class="isCurrentQuestion(question) && 'current-question'"
           >
             <div style="border-bottom: 1px solid grey">
@@ -414,6 +413,8 @@ export default defineComponent({
 }
 .question {
   min-width: 100px;
+  max-width: 100px;
+  min-height: 70px;
   border: 1px solid grey;
 }
 .current-question {