Browse Source

fix style

Michael Wang 3 years ago
parent
commit
934b09b6a7

+ 1 - 1
src/features/mark/MarkProblemDialog.vue

@@ -12,7 +12,7 @@
     </template>
     </template>
     <table class="group-table">
     <table class="group-table">
       <tr>
       <tr>
-        <th>问题类型</th>
+        <th class="tw-text-left">问题类型</th>
         <th class="tw-text-right" style="padding-right: 20px">操作</th>
         <th class="tw-text-right" style="padding-right: 20px">操作</th>
       </tr>
       </tr>
       <tr v-for="(problem, index) in store.setting.problemTypes" :key="index">
       <tr v-for="(problem, index) in store.setting.problemTypes" :key="index">

+ 4 - 0
src/features/mark/MarkSwitchGroupDialog.vue

@@ -104,6 +104,10 @@ defineExpose({ showModal });
   border-spacing: 0 0.5em;
   border-spacing: 0 0.5em;
 }
 }
 
 
+.group-table th {
+  text-align: left;
+}
+
 .current-group {
 .current-group {
   background-color: #f2f7ff;
   background-color: #f2f7ff;
 }
 }