Browse Source

style: aboutus contactus termsconditions三个页面富文本内容有序列表、无序列表默认样式调整.

peter 4 months ago
parent
commit
2569a8e088
3 changed files with 38 additions and 1 deletions
  1. 13 1
      pages/aboutus.vue
  2. 13 0
      pages/home/contactus.vue
  3. 12 0
      pages/home/termsConditions.vue

+ 13 - 1
pages/aboutus.vue

@@ -7,7 +7,7 @@
     <p class="title">About Us</p>
     <div class="line"></div>
     <div
-      class="content"
+      class="item"
       v-html="info"></div>
     <div></div>
   </div>
@@ -54,5 +54,17 @@ export default {
   p {
     word-wrap: break-word;
   }
+  ul {
+    list-style-type: unset;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
+  ol {
+    list-style-type: decimal;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
 }
 </style>

+ 13 - 0
pages/home/contactus.vue

@@ -7,6 +7,7 @@
     <p class="title">Contact Us</p>
     <div class="line"></div>
     <div
+      class="item"
       style="padding-left: 20px; font-size: 16px"
       v-html="info"></div>
     <br />
@@ -246,5 +247,17 @@ export default {
   p {
     word-wrap: break-word;
   }
+  ul {
+    list-style-type: unset;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
+  ol {
+    list-style-type: decimal;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
 }
 </style>

+ 12 - 0
pages/home/termsConditions.vue

@@ -63,5 +63,17 @@ export default {
   p {
     word-wrap: break-word;
   }
+  ul {
+    list-style-type: unset;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
+  ol {
+    list-style-type: decimal;
+    margin-top: 20px;
+    margin-bottom: 20px;
+    padding-left: 40px;
+  }
 }
 </style>