xutongzee 1 年之前
父節點
當前提交
a072f8bcfb
共有 4 個文件被更改,包括 34 次插入1 次删除
  1. 27 0
      src/styles/index.scss
  2. 1 1
      src/styles/variable.scss
  3. 3 0
      src/utils/formatTime.js
  4. 3 0
      src/utils/util.js

+ 27 - 0
src/styles/index.scss

@@ -5,12 +5,39 @@ body {
   background-color: rgba(247, 247, 247, 1);
 }
 
+img {
+  vertical-align: middle;
+}
+
 .layout {
   &-container {
     padding: 16px 24px !important;
   }
 }
 
+
+@mixin ellipsis {
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  overflow: hidden;
+}
+
+.ellipsis {
+  @include ellipsis();
+
+  &-two {
+    display: -webkit-box;
+    @include ellipsis();
+    white-space: wrap;
+    -webkit-line-clamp: 2;
+    -webkit-box-orient: vertical;
+    box-orient: vertical;
+    line-clamp: 2;
+    line-height: 1.2;
+    overflow: hidden;
+  }
+}
+
 .flex {
   &-row {
     display: flex;

+ 1 - 1
src/styles/variable.scss

@@ -1,3 +1,3 @@
-$color-primary: rgba(0, 176, 176, 1);
+$color-primary: #00b0b0;
 
 $orange: rgba(255, 123, 21, 1);

+ 3 - 0
src/utils/formatTime.js

@@ -0,0 +1,3 @@
+/**
+ * @description 处理时间
+ */

+ 3 - 0
src/utils/util.js

@@ -0,0 +1,3 @@
+/**
+ * 基础 `utils`
+ */