forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
43 lines (39 loc) · 911 Bytes
/
Copy pathheader.css
File metadata and controls
43 lines (39 loc) · 911 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.copilotKitHeader {
height: 56px;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
position: relative;
background-color: var(--copilot-kit-primary-color);
color: var(--copilot-kit-contrast-color);
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom: 1px solid var(--copilot-kit-separator-color);
}
.copilotKitSidebar .copilotKitHeader {
border-radius: 0;
}
@media (min-width: 640px) {
.copilotKitHeader {
padding-left: 24px;
padding-right: 24px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
}
.copilotKitHeader > button {
border: 0;
padding: 0px;
position: absolute;
top: 50%;
right: 16px;
transform: translateY(-50%);
outline: none;
color: var(--copilot-kit-contrast-color);
background-color: transparent;
cursor: pointer;
}
.copilotKitHeader > button:focus {
outline: none;
}