-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
93 lines (85 loc) · 2.64 KB
/
custom.css
File metadata and controls
93 lines (85 loc) · 2.64 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
/* Welcome page integration cards - match built-in Card styling */
.welcome-integration-cards a {
background-color: #fff;
border: 1px solid #e5e7eb;
}
[data-theme="dark"] .welcome-integration-cards a,
.dark .welcome-integration-cards a {
background-color: #16161a;
border-color: rgba(255, 255, 255, 0.1);
}
.welcome-integration-cards a:hover {
border-color: rgba(102, 98, 255, 0.4);
}
[data-theme="dark"] .welcome-integration-cards a:hover,
.dark .welcome-integration-cards a:hover {
border-color: rgba(102, 98, 255, 0.4);
}
.welcome-integration-cards h3 {
color: inherit;
}
.welcome-integration-cards .card-desc {
color: #71717a;
}
[data-theme="dark"] .welcome-integration-cards .card-desc,
.dark .welcome-integration-cards .card-desc {
color: #a1a1aa;
}
/* Add white background to integration icons in the sidebar navigation for better dark mode visibility */
img[src*="/images/integrations/"] {
background-color: white !important;
box-shadow: 0 0 0 4px white !important;
border-radius: 4px !important;
}
/* Remove underlines and styling from trust & security page links */
a[href*="privacy@harmony.io"],
a[href*="harmony.io"] {
text-decoration: none !important;
border-bottom: none !important;
background: transparent !important;
background-color: transparent !important;
box-shadow: none !important;
}
a[href*="privacy@harmony.io"]:hover,
a[href*="harmony.io"]:hover {
text-decoration: none !important;
border-bottom: none !important;
background: transparent !important;
background-color: transparent !important;
}
/* Center compliance card titles */
[class*="card"] h3,
[class*="Card"] h3 {
text-align: center !important;
}
/* Compliance cards: stretch to fill grid height so text reaches bottom */
.compliance-cards [class*="card"],
.compliance-cards [class*="Card"] {
height: 100% !important;
}
/* Ensure consistent sizing for certification logos */
img[src*="/certifications/"] {
width: 80px !important;
height: 80px !important;
object-fit: contain !important;
display: block !important;
margin: 0 auto !important;
}
/* Ensure consistent sizing for provider/subprocessor logos */
img[src*="/providers/"] {
width: 48px !important;
height: 48px !important;
object-fit: contain !important;
padding: 8px !important;
background-color: white !important;
border: 1px solid #e5e7eb !important;
border-radius: 8px !important;
}
/* Also target icons in navigation items */
nav img[src*="/images/integrations/"],
[class*="sidebar"] img[src*="/images/integrations/"],
[class*="nav"] img[src*="/images/integrations/"] {
background-color: white !important;
box-shadow: 0 0 0 4px white !important;
border-radius: 4px !important;
}