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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
| @mixin clearfix {
| &:after {
| content: "";
| display: table;
| clear: both;
| }
| }
|
| @mixin scrollBar {
| &::-webkit-scrollbar-track-piece {
| background: #EFEFEF;
| }
| &::-webkit-scrollbar {
| width: 6px;
| }
| &::-webkit-scrollbar-thumb {
| background: #C7D1DA;
| border-radius: 3px;
| }
| }
|
| @mixin relative {
| position: relative;
| width: 100%;
| height: 100%;
| }
|
| @mixin left {
| display: flex;
| align-items: center;
| justify-content: flex-start;
| }
|
| @mixin center {
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| @mixin right {
| display: flex;
| align-items: center;
| justify-content: flex-end;
| }
|
|