-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (53 loc) · 1.1 KB
/
Copy pathindex.css
File metadata and controls
63 lines (53 loc) · 1.1 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply antialiased bg-slate-50 text-slate-900 font-sans;
}
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: #cbd5e1;
border-radius: 20px;
}
@media print {
@page {
margin: 0.5cm;
size: A4;
}
body {
background-color: white;
print-color-adjust: exact;
-webkit-print-color-adjust: exact;
}
/* Elements to hide when printing */
.no-print,
button,
.floating-chat,
.header-bg {
display: none !important;
}
/* Ensure dashboard expands */
.dashboard-container {
margin-top: 0 !important;
box-shadow: none !important;
border: none !important;
max-width: 100% !important;
padding: 0 !important;
}
/* Break page before critical sections if needed */
.page-break {
page-break-before: always;
}
.text-slate-300 {
color: #64748b !important;
/* Make light text darker for print */
}
}