-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (38 loc) · 890 Bytes
/
style.css
File metadata and controls
42 lines (38 loc) · 890 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
36
37
38
39
40
41
42
th {
color: black !important;
}
.dark th {
color: white !important;
}
#banner {
background-color: #f2e584 !important;
}
#banner * {
color: black !important;
font-size: 0.75rem !important;
text-align: left;
}
/* Hide dismiss button on desktop (show only on mobile) */
@media screen and (min-width: 768px) {
#banner button,
#banner [aria-label*="close"],
#banner [aria-label*="dismiss"],
#banner [data-dismiss],
#banner button[type="button"] {
display: none !important;
}
#banner {
text-align: center !important;
}
}
/* Products dropdown – extend beyond Mintlify default height */
@media screen and (max-width: 767px) {
[data-radix-menu-content] {
max-height: 80vh !important;
}
}
@media screen and (min-width: 768px) {
[data-radix-menu-content] {
max-height: 600px !important;
}
}