-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
57 lines (52 loc) · 1002 Bytes
/
global.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
--background-end-rgb: 0, 0, 0;
}
}
body {
background-color: black;
}
span, button{
color:white;
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
img{
height: fit-content !important;
}
select>option{
background-color: transparent !important;
}
.Collapsible__trigger{
width: 100%;
display: inline-block;
padding: 16px 0;
transition: transform 300ms cubic-bezier(0, 1, 0, 1);
}
.supply-card{
fill: rgba(147, 121, 98, 0.04);
stroke-width: 1px;
stroke: var(--Ghost-Button-Stroke, #57461B);
backdrop-filter: blur(75px);
}
.rs-input-number-btn-group-vertical{
display: none;
}
.rs-input{
background-color: transparent;
outline: none;
max-width: 100%;
}