Pagination.module.scss
792 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
@import '../../../../../styles/app';
.pagination {
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
margin-bottom: 15px;
}
.paginationText {
color: #868e96;
font-size: $font-size-mini;
}
.paginationPages {
border-left: 1px solid #868e96;
padding-left: 11px;
margin-left: 10px;
display: flex;
button {
margin-left: 4px;
}
}
.button {
transition: 0.3s;
padding: 0.45rem 0.75rem;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: $font-weight-normal;
border-radius: 0.2rem;
color: #888;
background: #fff;
border: none;
&:hover {
background-color: transparent;
}
}
.buttonActive {
background: $gray-300;
}
.buttonDisabled {
&:hover {
background-color: #fff;
}
}