AxL95 commited on
Commit
515cf64
·
verified ·
1 Parent(s): a4b5dd8

Update frontend/src/App.css

Browse files
Files changed (1) hide show
  1. frontend/src/App.css +36 -0
frontend/src/App.css CHANGED
@@ -17,6 +17,42 @@
17
  background-attachment: fixed;
18
  }
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  /* À ajouter dans votre fichier CSS */
21
  .user-info {
22
  display: flex;
 
17
  background-attachment: fixed;
18
  }
19
 
20
+
21
+
22
+
23
+ .token-limit-warning {
24
+ display: flex;
25
+ justify-content: center;
26
+ margin: 15px 0;
27
+ padding: 10px;
28
+ background-color: rgba(255, 193, 7, 0.1);
29
+ border-radius: 8px;
30
+ }
31
+
32
+ .new-conversation-button {
33
+ background-color: #4D59FB;
34
+ color: white;
35
+ border: none;
36
+ border-radius: 20px;
37
+ padding: 10px 20px;
38
+ font-size: 14px;
39
+ font-weight: 500;
40
+ cursor: pointer;
41
+ transition: background-color 0.2s;
42
+ display: flex;
43
+ align-items: center;
44
+ gap: 8px;
45
+ }
46
+
47
+ .new-conversation-button:hover {
48
+ background-color: #3A46E8;
49
+ }
50
+
51
+ .new-conversation-button::before {
52
+ content: "+";
53
+ font-size: 18px;
54
+ font-weight: bold;
55
+ }
56
  /* À ajouter dans votre fichier CSS */
57
  .user-info {
58
  display: flex;