huibing.xie | 1f1606f | 2018-08-20 15:46:55 +0800 | [diff] [blame] | 1 | @mixin clearfix { |
2 | &:after { | ||||
3 | content: ""; | ||||
4 | display: table; | ||||
5 | clear: both; | ||||
6 | } | ||||
7 | } | ||||
8 | |||||
9 | @mixin scrollBar { | ||||
10 | &::-webkit-scrollbar-track-piece { | ||||
11 | background: #d3dce6; | ||||
12 | } | ||||
13 | &::-webkit-scrollbar { | ||||
14 | width: 6px; | ||||
15 | } | ||||
16 | &::-webkit-scrollbar-thumb { | ||||
17 | background: #99a9bf; | ||||
18 | border-radius: 20px; | ||||
19 | } | ||||
20 | } | ||||
21 | |||||
22 | @mixin relative { | ||||
23 | position: relative; | ||||
24 | width: 100%; | ||||
25 | height: 100%; | ||||
26 | } | ||||
27 |