-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathTableQueue.module.scss
76 lines (65 loc) · 1.22 KB
/
TableQueue.module.scss
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
66
67
68
69
70
71
72
73
74
75
76
@import '../../shared/styles/basics';
@import '../../shared/styles/mixins';
@import '../../shared/styles/colors';
.TableQueue {
@include u-display(flex);
@include u-margin-x(0);
@include u-padding-x(0);
flex-direction: column;
flex: auto;
min-width: 100%;
p {
@include u-margin(0);
@include u-padding-left(0.5);
}
h2 {
@include u-margin-top(4);
@include u-padding-left(0.5);
}
.queueHeader {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.queueButtonWrapper {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: flex-end;
}
.csvDownloadLink {
padding: 10px;
cursor: pointer;
}
.bulkModal {
padding: 10px;
cursor: pointer;
}
.tableContainer {
flex: auto;
@include u-margin-top(1);
max-width: 100%;
overflow-x: auto;
}
table {
width: 100%;
tbody tr {
cursor: pointer;
}
}
}
.pillButton {
border: 1px solid #252f3e;
color: #000000;
padding: 6px 6px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 5px 5px;
cursor: pointer;
border-radius: 10px;
}
.pillButtonRow {
padding-left: 8px;
}