Pārlūkot izejas kodu

调整小卡片的样式

yangxuxian 3 gadi atpakaļ
vecāks
revīzija
bba8b70f5b
1 mainītis faili ar 17 papildinājumiem un 5 dzēšanām
  1. 17 5
      src/components/area/windturbine/WindturbineMinCard.vue

+ 17 - 5
src/components/area/windturbine/WindturbineMinCard.vue

@@ -5,10 +5,10 @@
             <el-col span="12">
                 <div :class="leftStyle">
                     <el-row>
-                        <div :class="titleStyle">SG</div>
+                        <div :class="title1Style">SG</div>
                     </el-row>
                     <el-row>
-                        <div :class="titleStyle">223</div>
+                        <div :class="title2Style">223</div>
                     </el-row>
                 </div>
             </el-col>
@@ -45,8 +45,11 @@
             rightStyle: function () {
                 return "card-right-style-" + this.status;
             },
-            titleStyle: function () {
-                return "card-title-style-" + this.status;
+            title1Style: function () {
+                return "card-title1-style-" + this.status;
+            },
+            title2Style: function () {
+                return "card-title2-style-" + this.status;
             },
             contentStyle: function () {
                 return "card-content-style-" + this.status;
@@ -84,8 +87,17 @@
         display: inline-block;
     }
 
-    .card-title-style-1 {
+    .card-title1-style-1 {
+        margin-top: 2px;
+        font-size: 14px;
+        width: 100%;
+        text-align: center;
+    }
+
+    .card-title2-style-1 {
+        margin-top: 2px;
         font-size: 10px;
+        width: 100%;
         text-align: center;
     }