forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
46 lines (40 loc) · 673 Bytes
/
Copy pathglobals.css
File metadata and controls
46 lines (40 loc) · 673 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
44
45
46
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
:root {
--copilot-kit-primary-color: #222222 !important;
}
.copilotKitHeader {
height: 60px;
border-left: 1px solid #555;
}
.copilotKitWindow.open {
box-shadow: none;
}
html,
body {
height: 100%;
margin: 0;
}
.aspect-ratio-box {
width: 100%;
max-width: calc(100% - 5rem); /* Account for margin */
position: relative;
}
.aspect-ratio-box::before {
content: "";
display: block;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.aspect-ratio-box > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}