forked from evanfu0110/68hub
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (73 loc) · 1.66 KB
/
Copy pathindex.css
File metadata and controls
89 lines (73 loc) · 1.66 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
@import "tailwindcss";
@plugin "daisyui" {
themes: cupcake --default, forest;
}
html {
user-select: none;
overflow: hidden;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
overflow: hidden;
}
* {
scrollbar-width: none;
-ms-overflow-style: none;
}
*::-webkit-scrollbar {
display: none;
}
.content-area {
height: calc(100vh - 38px);
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: none;
-ms-overflow-style: none;
}
.input-native {
@apply input input-sm w-full border border-base-300 focus:outline-none focus:border-primary/40 transition-colors px-3 py-2.5;
}
.input-native::placeholder {
color: oklch(0.6 0.02 80);
}
.recharts-wrapper {
user-select: none !important;
outline: none !important;
overflow: visible;
}
.recharts-surface {
user-select: none !important;
outline: none !important;
overflow: visible;
}
.recharts-legend-wrapper,
.recharts-tooltip-wrapper,
.recharts-cartesian-grid,
.recharts-cartesian-axis {
user-select: none !important;
outline: none !important;
}
.recharts-surface * {
outline: none !important;
-webkit-tap-highlight-color: transparent;
}
*:focus {
outline: none !important;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes loadingBar {
0% { transform: translateX(-100%); }
50% { transform: translateX(80%); }
100% { transform: translateX(200%); }
}
.animate-loading-bar {
animation: loadingBar 1.8s ease-in-out infinite;
}
.page-enter {
animation: fadeIn 0.25s ease-out;
}