-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathglobals.css
More file actions
149 lines (97 loc) · 2.3 KB
/
globals.css
File metadata and controls
149 lines (97 loc) · 2.3 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.react-flow__attribution {
display: none;
}
.react-flow__node.selected {
transition: box-shadow 0.3s ease;
/* Add transition */
/* box-shadow: 0px 0px 15px 0px hsl(var(--heroui-secondary-50)), 0px 2px 30px 0px hsl(var(--heroui-secondary-50)), 0px 0px 1px 0px hsl(var(--heroui-secondary-50));
*/
}
.noselect {
user-select: none;
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* IE10+/Edge */
}
html,
body {
user-select: none;
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
}
.selectable {
user-select: text;
-webkit-user-select: text;
/* Safari */
-moz-user-select: text;
/* Firefox */
-ms-user-select: text;
/* IE/Edge */
}
.react-flow__renderer {
cursor: default !important;
/* or pointer, grab, etc. */
}
.sidebar-item[data-active="true"] svg {
color: hsl(var(--heroui-primary));
}
@keyframes dash {
to {
stroke-dashoffset: -10;
}
}
/* Target the scrollbar */
::-webkit-scrollbar {
width: 1px;
/* Width of the scrollbar */
}
/* Track (background of the scrollbar) */
/* Handle (the scroll thumb) */
::-webkit-scrollbar-thumb {
background: hsl(var(--heroui-scrollbar));
/* Darker gray */
border-radius: 6px;
/* Rounded corners */
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--heroui-scrollbar-hover));
/* Darker on hover */
}
.react-flow__node {
cursor: grab !important;
}
.react-flow__node:active {
cursor: grabbing !important;
}
.react-flow__pane {
cursor: default !important;
}
.cm-editor {
min-width: 100% !important;
}
.cm-scroller::-webkit-scrollbar {
height: 6px;
}
.main-linear-background {
background: linear-gradient(180deg, rgb(140 104 255 / 15%) -1.95%, rgb(131 92 255 / 0%) 20.34%), #ffffff00;
}
.assistant-textarea-background {
background-image: linear-gradient(90deg, rgb(138, 30, 252) 0%, rgb(254, 67, 119) 52%, rgb(255, 151, 54) 100%);
}
.gradient-text {
background: linear-gradient(90deg,
rgb(213, 108, 255) 4.5%,
rgb(123, 82, 255) 51.36%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.auth-gradient {
background-image: radial-gradient(56.51% 23.56% at 50% 0%, #8e51ff55 0%, #F6F8FA00 100%);
}