anhkhoiphan commited on
Commit
31917c2
·
verified ·
1 Parent(s): 967df4e

Delete public

Browse files
public/agent-avatar.png DELETED

Git LFS Details

  • SHA256: 0af66ad8d395282c9ba98dce5f04ed2905bdae825a836c2aae7afd93c9da3a27
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
public/custom.css DELETED
@@ -1,54 +0,0 @@
1
- /* Avatar tùy chỉnh cho user và assistant */
2
- .message-avatar img[alt="User"] {
3
- content: url('/public/user-avatar.png') !important;
4
- }
5
-
6
- .message-avatar img[alt="Assistant"] {
7
- content: url('/public/agent-avatar.png') !important;
8
- }
9
-
10
- /* Hoặc sử dụng class selector */
11
- .user-message .message-avatar img {
12
- content: url('/public/user-avatar.png') !important;
13
- }
14
-
15
- .assistant-message .message-avatar img {
16
- content: url('/public/agent-avatar.png') !important;
17
- }
18
-
19
- /* Style avatar size */
20
- .message-avatar img {
21
- width: 40px !important;
22
- height: 40px !important;
23
- border-radius: 50% !important;
24
- }
25
-
26
- /* Thay thế avatar mặc định bằng background */
27
- .message-avatar {
28
- width: 40px;
29
- height: 40px;
30
- border-radius: 50%;
31
- overflow: hidden;
32
- }
33
-
34
- /* User avatar */
35
- .user-message .message-avatar::before {
36
- content: "";
37
- display: block;
38
- width: 100%;
39
- height: 100%;
40
- background-image: url('/public/user-avatar.png');
41
- background-size: cover;
42
- background-position: center;
43
- }
44
-
45
- /* Assistant avatar */
46
- .assistant-message .message-avatar::before {
47
- content: "";
48
- display: block;
49
- width: 100%;
50
- height: 100%;
51
- background-image: url('/public/agent-avatar.png');
52
- background-size: cover;
53
- background-position: center;
54
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/theme.json DELETED
@@ -1,70 +0,0 @@
1
- {
2
- "custom_fonts": [
3
- "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
4
- ],
5
- "variables": {
6
- "light": {
7
- "--font-sans": "'Inter', sans-serif",
8
- "--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
9
- "--background": "0 0% 98%",
10
- "--foreground": "0 0% 10%",
11
- "--card": "0 0% 100%",
12
- "--card-foreground": "0 0% 10%",
13
- "--popover": "0 0% 100%",
14
- "--popover-foreground": "0 0% 10%",
15
- "--primary": "0 0% 10%",
16
- "--primary-foreground": "0 0% 100%",
17
- "--secondary": "0 0% 96%",
18
- "--secondary-foreground": "0 0% 15%",
19
- "--muted": "0 0% 93%",
20
- "--muted-foreground": "0 0% 40%",
21
- "--accent": "0 0% 95%",
22
- "--accent-foreground": "0 0% 15%",
23
- "--destructive": "0 84% 60%",
24
- "--destructive-foreground": "0 0% 98%",
25
- "--border": "0 0% 88%",
26
- "--input": "0 0% 88%",
27
- "--ring": "0 0% 20%",
28
- "--radius": "0.75rem",
29
- "--sidebar-background": "0 0% 97%",
30
- "--sidebar-foreground": "0 0% 25%",
31
- "--sidebar-primary": "0 0% 12%",
32
- "--sidebar-primary-foreground": "0 0% 98%",
33
- "--sidebar-accent": "0 0% 94%",
34
- "--sidebar-accent-foreground": "0 0% 15%",
35
- "--sidebar-border": "0 0% 90%",
36
- "--sidebar-ring": "0 0% 30%"
37
- },
38
- "dark": {
39
- "--font-sans": "'Inter', sans-serif",
40
- "--font-mono": "source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace",
41
- "--background": "0 0% 6%",
42
- "--foreground": "0 0% 95%",
43
- "--card": "0 0% 12%",
44
- "--card-foreground": "0 0% 95%",
45
- "--popover": "0 0% 12%",
46
- "--popover-foreground": "0 0% 95%",
47
- "--primary": "0 0% 95%",
48
- "--primary-foreground": "0 0% 8%",
49
- "--secondary": "0 0% 15%",
50
- "--secondary-foreground": "0 0% 90%",
51
- "--muted": "0 0% 18%",
52
- "--muted-foreground": "0 0% 60%",
53
- "--accent": "0 0% 20%",
54
- "--accent-foreground": "0 0% 90%",
55
- "--destructive": "0 75% 50%",
56
- "--destructive-foreground": "0 0% 95%",
57
- "--border": "0 0% 20%",
58
- "--input": "0 0% 20%",
59
- "--ring": "0 0% 80%",
60
- "--sidebar-background": "0 0% 4%",
61
- "--sidebar-foreground": "0 0% 85%",
62
- "--sidebar-primary": "0 0% 90%",
63
- "--sidebar-primary-foreground": "0 0% 8%",
64
- "--sidebar-accent": "0 0% 10%",
65
- "--sidebar-accent-foreground": "0 0% 85%",
66
- "--sidebar-border": "0 0% 18%",
67
- "--sidebar-ring": "0 0% 70%"
68
- }
69
- }
70
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
public/user-avatar.png DELETED
Binary file (22.9 kB)