-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
35 lines (30 loc) · 792 Bytes
/
custom.css
File metadata and controls
35 lines (30 loc) · 792 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
/* Custom styles for Mintlify documentation */
/* Increase logo size - targeting Mintlify's nav-logo class */
.nav-logo {
height: 48px !important;
max-height: 48px !important;
width: auto !important;
}
/* Fallback selectors for additional compatibility */
nav a[href="/"] img,
header a[href="/"] img {
height: 64px !important;
max-height: 64px !important;
width: auto !important;
}
/* Force light mode only - hide dark mode toggle */
button[aria-label*="theme" i],
button[aria-label*="dark" i],
button[aria-label*="mode" i],
[data-theme-toggle],
.theme-toggle {
display: none !important;
}
/* Ensure light mode styles are always applied */
html {
color-scheme: light !important;
}
html.dark,
html[data-theme="dark"] {
color-scheme: light !important;
}