Michael Wang 4 vuotta sitten
vanhempi
commit
61096e00f8
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  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 {