forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse.css
More file actions
29 lines (27 loc) · 672 Bytes
/
Copy pathresponse.css
File metadata and controls
29 lines (27 loc) · 672 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
.copilotKitResponseButton {
background-color: var(--copilot-kit-response-button-background-color);
border: 1px solid var(--copilot-kit-response-button-border-color);
border-radius: 4px;
color: var(--copilot-kit-response-button-color);
cursor: pointer;
font-size: 14px;
font-weight: 500;
height: 32px;
line-height: 30px;
margin: 0;
padding: 0 16px;
text-align: center;
text-decoration: none;
text-transform: none;
white-space: nowrap;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -44px;
}
.copilotKitResponseButton:hover {
filter: brightness(95%);
}
.copilotKitResponseButton > span {
margin-right: 0.5rem;
}