-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-table.module.scss
More file actions
86 lines (72 loc) · 1.23 KB
/
data-table.module.scss
File metadata and controls
86 lines (72 loc) · 1.23 KB
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
77
78
79
80
81
82
83
84
85
86
@use '@grid/origin/tokens' as *;
.container {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.toolbar {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--spacing-md);
flex-wrap: wrap;
}
.search {
flex: 1;
max-width: 320px;
}
.filters {
display: flex;
align-items: center;
gap: var(--spacing-sm);
}
.checkboxCell {
width: 48px;
}
.nameCell {
min-width: 160px;
}
.name {
@include label;
color: var(--text-primary);
}
.emailCell {
color: var(--text-secondary);
}
.actionsCell {
width: 80px;
text-align: right;
}
.sortButton {
display: inline-flex;
align-items: center;
gap: var(--spacing-2xs);
background: none;
border: none;
padding: 0;
font: inherit;
color: inherit;
cursor: pointer;
&:hover {
color: var(--text-primary);
}
}
.emptyState {
display: flex;
align-items: center;
justify-content: center;
padding: var(--spacing-4xl);
color: var(--text-secondary);
text-align: center;
}
.pagination {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: var(--spacing-md);
border-top: 1px solid var(--border-tertiary);
}
.paginationInfo {
@include body-sm;
color: var(--text-secondary);
}