-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (27 loc) · 841 Bytes
/
style.css
File metadata and controls
31 lines (27 loc) · 841 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
/* Widen main reading column in Almond, keep sidebar/ToC intact */
@media (min-width: 1280px) {
/* Mintlify applies Tailwind Typography's .prose to page content */
.prose {
/* Increase readable line length but avoid super-long lines */
max-width: 88ch; /* ~88 characters per line */
}
/* Loosen container caps commonly used for the center column */
main [class*="max-w-"] {
max-width: 1180px !important; /* was ~800–960px on many pages */
}
/* Defensive overrides for common Almond wrappers */
#content-area,
#mintlify-content {
max-width: 1180px !important;
}
/* Align wide and default page modes */
#content-container {
padding-left: 5rem;
padding-right: 3rem;
}
}
/* Optional: keep code blocks from stretching too far */
.prose pre {
max-width: 100%;
overflow: auto;
}