小小儁爺
2024-10-30 c411ff4e29b1b3f6d61dd0bae092d56358f06922
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
28
@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%;
}