pagination.scss
707 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
@import '@/styles/_support';
.comp {
// display: flex;
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
span {
margin: 0.4rem 0.7rem;
text-align: center;
}
.page-num {
width: 1.75rem;
height: 1.75rem;
border: solid 1px #dcdddd;
text-align: center;
cursor: pointer;
}
.page-num:hover {
color: #ffffff;
background-color: #006441;
}
}
.disabled {
color: #888888;
}
.active {
color: #ffffff;
background-color: #006441;
}
.ipt {
@extend .bb;
width: 3.5rem;
border: solid 1px #dcdddd;
padding: 0 .7rem;
text-align: center;
}
.jump {
color: #006441;
text-decoration: underline;
}