forked from openai/openai-assistants-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile-viewer.module.css
78 lines (68 loc) · 1.08 KB
/
file-viewer.module.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
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
.fileViewer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
padding: 20px;
background-color: #efefef;
overflow: hidden;
border-radius: 16px;
}
.filesList {
overflow-y: auto;
padding: 10px;
display: flex;
flex-direction: column;
gap: 12px;
align-items: center;
width: 100%;
}
.grow {
flex-grow: 1;
}
.fileEntry {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #ececf1;
gap: 16px;
width: 100%;
}
.fileName {
flex-grow: 1;
}
.fileStatus {
font-size: 0.8em;
color: #666;
}
.fileDeleteIcon {
cursor: pointer;
}
.fileUploadContainer {
padding: 10px;
display: flex;
justify-content: center;
}
.fileUploadBtn {
background-color: #000;
color: white;
padding: 8px 24px;
border-radius: 32px;
text-align: center;
display: inline-block;
cursor: pointer;
}
.fileUploadInput {
display: none;
}
.title {
font-size: 1.2em;
font-weight: 600;
}
.fileName {
width: 100%;
display: flex;
flex-direction: column;
}