-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
70 lines (60 loc) · 979 Bytes
/
Copy pathindex.css
File metadata and controls
70 lines (60 loc) · 979 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Inter', sans-serif;
}
.fade-in {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media print {
body {
background: white !important;
margin: 0;
}
body * {
visibility: hidden;
}
#smartvest-print-sheet,
#smartvest-print-sheet * {
visibility: visible;
}
#smartvest-print-sheet {
display: block !important;
position: absolute;
left: 0;
top: 0;
width: 100%;
padding: 1.5cm;
color: #000 !important;
font-size: 12pt;
line-height: 1.45;
}
header,
footer,
#root,
.print-screen {
display: none !important;
}
}
@media (prefers-reduced-motion: reduce) {
.fade-in,
.animate-pulse,
.animate-ping,
.animate-bounce,
.animate-spin,
.animate-gradient {
animation: none !important;
}
* {
scroll-behavior: auto !important;
}
}