Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -64,16 +64,22 @@ header {visibility: hidden;}
|
|
64 |
margin-top: 0.1em;
|
65 |
position: relative;
|
66 |
}
|
|
|
67 |
.clear-chat-btn-top {
|
68 |
position: absolute;
|
69 |
-
top:
|
70 |
-
right:
|
71 |
font-size: 1.4em;
|
72 |
color: #ccc;
|
73 |
background: none;
|
74 |
border: none;
|
75 |
cursor: pointer;
|
76 |
z-index: 1000;
|
|
|
|
|
|
|
|
|
|
|
77 |
}
|
78 |
|
79 |
.stChatMessage { max-width: 85%; border-radius: 12px; padding: 8px; margin-bottom: 10px; }
|
|
|
64 |
margin-top: 0.1em;
|
65 |
position: relative;
|
66 |
}
|
67 |
+
|
68 |
.clear-chat-btn-top {
|
69 |
position: absolute;
|
70 |
+
top: 10px;
|
71 |
+
right: 50px;
|
72 |
font-size: 1.4em;
|
73 |
color: #ccc;
|
74 |
background: none;
|
75 |
border: none;
|
76 |
cursor: pointer;
|
77 |
z-index: 1000;
|
78 |
+
transition: color 0.2s ease;
|
79 |
+
}
|
80 |
+
|
81 |
+
.clear-chat-btn-top:hover {
|
82 |
+
color: #fff;
|
83 |
}
|
84 |
|
85 |
.stChatMessage { max-width: 85%; border-radius: 12px; padding: 8px; margin-bottom: 10px; }
|