forked from TanStack/virtual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (40 loc) · 664 Bytes
/
index.css
File metadata and controls
48 lines (40 loc) · 664 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
html {
font-family: sans-serif;
font-size: 14px;
}
.List table {
background-color: #fff;
border: 1px solid #e6e4dc;
max-width: 100%;
border-collapse: collapse;
display: flex;
flex-direction: column;
align-items: stretch;
position: relative;
}
.List thead {
display: flex;
flex-direction: column;
background-color: #fff;
position: sticky;
top: 0;
z-index: 1;
}
.List thead tr {
height: 70px;
}
.List tr {
display: flex;
flex-direction: row;
}
.List td,
.List th {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 180px;
}
.ListItemEven {
background-color: #e6e4dc;
}