gaosp
2024-01-16 fcb6eb2c02f00b0da864a8915af2afcb285a63a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}
 
@mixin scrollBar {
  &::-webkit-scrollbar-track-piece {
    background: #d3dce6;
  }
  &::-webkit-scrollbar {
    width: 6px;
  }
  &::-webkit-scrollbar-thumb {
    background: #99a9bf;
    border-radius: 20px;
  }
}
 
@mixin relative {
  position: relative;
  width: 100%;
  height: 100%;
}