blob: 601d7a034be6d664142b18d87df3835b2d22b325 [file] [log] [blame]
huibing.xie1f1606f2018-08-20 15:46:55 +08001@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