pagination.scss
923 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
@import '@/styles/_support';
.comp {}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  &-item {
    @extend .bb;
    padding: 0 .8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  span {
    margin: 0.4rem 0.7rem;
    text-align: center;
  }
  .page-num {
    @extend .fcc;
    @extend .bb;
    padding: 0 4px;
    min-width: 2.25rem;
    height: 2.5rem;
    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: 5rem;
  height: 2.5rem;
  border: solid 1px #dcdddd;
  padding: 0 .7rem;
  text-align: center;
}
.jump {
  color: #006441;
  text-decoration: underline;
}