generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom.css
More file actions
51 lines (44 loc) · 1.03 KB
/
custom.css
File metadata and controls
51 lines (44 loc) · 1.03 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
/* Hide default pagination footer */
#pagination {
display: none;
}
.pagination-next,
.pagination-prev,
.pagination-title {
display: none;
}
/* Move global anchors to bottom of sidebar */
#Sidebar {
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
}
.nav-anchors {
order: 999 !important;
margin-top: auto !important;
padding-top: 1rem !important;
border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
/* Logo size - navbar, footer normal */
#navbar img[alt*="logo"],
#navbar img[src*="logo"],
nav img[alt*="logo"],
nav img[src*="logo"],
header img[alt*="logo"],
header img[src*="logo"] {
height: auto !important;
max-height: 52px !important;
width: auto !important;
}
footer img[alt*="logo"],
footer img[src*="logo"] {
height: auto !important;
width: auto !important;
}
/* Footer top border: subtle in light, dark in dark theme (no white line) */
footer.docs-footer {
border-top: 1px solid #e5e7eb;
}
html.dark footer.docs-footer {
border-top-color: #1f2937;
}