张延森 преди 3 години
родител
ревизия
9d75f93517
променени са 1 файла, в които са добавени 37 реда и са изтрити 0 реда
  1. 37
    0
      src/app.less

+ 37
- 0
src/app.less Целия файл

@@ -0,0 +1,37 @@
1
+.page-index {
2
+  display: flex;
3
+  flex-direction: column;
4
+  width: 100vw;
5
+  height: 100vh;
6
+  overflow: hidden;
7
+  box-sizing: border-box;
8
+
9
+  .index-navbar {
10
+    flex: none;
11
+  }
12
+
13
+  .index-tabber {
14
+    flex: none;
15
+  }
16
+
17
+  .index-container {
18
+    flex: auto;
19
+    overflow: hidden;
20
+    position: relative;
21
+  }
22
+}
23
+
24
+.custom-tabbar {
25
+  background: #ffffff;
26
+  box-shadow: 0px -4px 6px 0px rgba(0, 0, 0, 0.08);
27
+
28
+  .weui-tabbar__label {
29
+    color: #c0c8d3;
30
+  }
31
+
32
+  .weui-bar__item_on {
33
+    .weui-tabbar__label {
34
+      color: #202020;
35
+    }
36
+  }
37
+}