-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReactTable.css
47 lines (47 loc) · 890 Bytes
/
ReactTable.css
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
.people-table {
background-color: #f5f5f5;
margin: 30px;
border-radius: 10px;
padding: 20px;
width: calc(100% - 100px);
}
table {
width: 100%;
}
table > thead > tr > th {
text-align: left;
text-transform: uppercase;
padding: 0 0 10px 0;
border-bottom: 1px solid;
}
table > tbody > tr {
height: 60px;
text-align: left;
}
.pagination {
display: flex;
justify-content: flex-end;
align-items: center;
height: 50px;
}
.pagination > button {
margin: 0 10px 0 0;
height: 30px;
cursor: pointer;
border: 1px solid;
}
.pagination > button:disabled {
cursor: not-allowed;
}
.refetch-test {
display: flex;
width: 150px;
font-weight: 600;
background: #b6cdff;
height: 40px;
justify-content: center;
align-items: center;
margin: 0 0 10px 0;
cursor: pointer;
border-radius: 6px;
}