pagination.scss
886 Bytes
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.comp {}
.pagination {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
&-item {
@extend .bb;
padding: 0 9.6px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
span {
margin: 4.8px 8.4px;
text-align: center;
}
.page-num {
@extend .fcc;
@extend .bb;
padding: 0 4px;
min-width: 27px;
height: 30px;
border: solid 1px #dcdddd;
text-align: center;
cursor: pointer;
}
.page-num:hover {
color: #ffffff;
background-color: #006441;
}
}
.pagination-disabled {
// color: #888888;
}
.active {
color: #ffffff;
background-color: #006441;
}
.ipt {
@extend .bb;
width: 60px;
height: 30px;
border: solid 1px #dcdddd;
padding: 0 8.4px;
text-align: center;
}
.jump {
color: #006441;
text-decoration: underline;
}